1.2 KiB
1.2 KiB
Release Checklist
- Get master to the appropriate code release state. Travis CI should be running cleanly for all merges to master.
- Remove
.dev0
suffix from the version and update version and date in the changelog:
git checkout master
edit CHANGELOG.md pylast/version.py
- Commit and tag with the version number:
git add CHANGELOG.md pylast/version.py
git commit -m "Release 3.0.0"
git tag -a 3.0.0 -m "Release 3.0.0"
- Push commits and tags:
git push
git push --tags
-
Create new GitHub release: https://github.com/pylast/pylast/releases/new
- Tag: Pick existing tag "3.0.0"
- Title: "Release 3.0.0"
-
Check the tagged Travis CI build has deployed to PyPI
-
Check installation:
pip3 uninstall -y pylast && pip3 install -U pylast
-
Increment version and append
.dev0
, and add Unreleased to the changelog:
git checkout master
edit CHANGELOG.md pylast/version.py
- Commit and push:
git add CHANGELOG.md pylast/version.py
git commit -m "Start new release cycle"
git push