-
Notifications
You must be signed in to change notification settings - Fork 6
Release process
Iván de Prado edited this page Apr 3, 2020
·
2 revisions
You would need a bumpversion package (pip install bumpversion).
- Update Changelog (a separate commit / PR)
- After changelog is merged to master, run
bumpversion minor --dry-run --verbose, to check which changes are needed to update the version, and thenbumpversion minorto actually commit them. This command should update version numbers, commit changes and add agittag. - Push the change and the tag with command
git push origin `git describe --tags`. Pypi release will be handled by CI.