mirror of
https://github.com/placeholder-soft/chroma.git
synced 2026-01-12 08:44:18 +08:00
809 B
809 B
Release Process
This guide covers how to release chroma to PyPi
Increase the version number
- Create a new PR for the release that upgrades the version in code. Name it
release/A.B.CIn this file update the __ version __.
__version__ = "A.B.C"
- Add the "release" label to this PR
- Once the PR is merged, tag your commit SHA with the release version
git tag A.B.C <SHA>
- You need to then wait for the github action for main for
chroma releaseandchroma client releaseto go green. Not doing this will result in a race condition.
Perform the release
- Push your tag to origin to create the release
git push origin A.B.C
- This will trigger a Github action which performs the release