411 B
411 B
title | sidebar | showTitle |
---|---|---|
Releasing a New Version (Python Library) | Handbook | true |
How to Release
- Increase
VERSION
inposthog/version.py
- Update
CHANGELOG.md
with a short summary of the changes - run
make release
andmake release_analytics
git commit -am "Release X.Y.Z."
(where X.Y.Z is the new version)git tag -a X.Y.Z -m "Version X.Y.Z"
(where X.Y.Z is the new version).