Releasing a New Version (Python Integration)
How to Release
- Increase
VERSION
in posthog/version.py
- Update
CHANGELOG.md
with a short summary of the changes
- run
make release
and make 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).