Example version number
- 1.8.dev0 # development version of 1.8 (release candidate 1)
- 1.8rc1 # 1.8 release candidate 1
- 1.8rc2.dev0 # development version of 1.8 release candidate 2
- 1.8 # 1.8 release
- 1.9.dev0 # development version of 1.9 (release candidate 1)
-
Set release variables:
export VERSION=<version number> export PREVIOUS=<previous version number> export ORG="scientific-python" export REPO="spin" export LOG="CHANGELOG.md" -
Autogenerate release notes:
changelist ${ORG}/${REPO} v${PREVIOUS} main --version ${VERSION} --out ${VERSION}.md -
Put the output of the above command at the top of
CHANGELOG.md:cat ${VERSION}.md | cat - ${LOG} > temp && mv temp ${LOG} -
Update
versioninspin/__init__.py. -
Commit changes:
git add spin/__init__.py CHANGELOG.md git commit -m "Designate ${VERSION} release" -
Tag the release in git:
git tag -s v${VERSION} -m "signed ${VERSION} tag"(If you do not have a GPG key, follow the tutorial to set it up: https://help.github.com/articles/signing-commits-with-gpg/)
-
Push the new meta-data to github:
git push --tags origin mainwhere
originis the name of thegithub.com:scientific-python/spinrepository -
Review the github tags page:
https://github.com/scientific-python/spin/tagsand create a release. Paste the content of "${VERSION}.md" into the release notes, apart from the title line starting with
#. -
Update
versioninspin/__init__.pyto0.Xrc0.dev0. -
Commit changes:
git add spin/__init__.py git commit -m 'Bump version' git push origin main