Release workflow¶
Fill the
CHANGELOG.md
with the new versionChange the version number in
__about__.py
Apply a git tag with the relevant version:
git tag -a 0.3.0 {git commit hash} -m "New awesome feature"
Push tag to main branch:
git push origin --tags