@@ -20,11 +20,11 @@ Example `version number`
2020 export REPO="spin"
2121 export LOG="CHANGELOG.md"
2222
23- - Autogenerate release notes
23+ - Autogenerate release notes:
2424
2525 changelist ${ORG}/${REPO} v${PREVIOUS} main --version ${VERSION} --out ${VERSION}.md
2626
27- - Put the output of the above command at the top of ` CHANGELOG.md `
27+ - Put the output of the above command at the top of ` CHANGELOG.md ` :
2828
2929 cat ${VERSION}.md | cat - ${LOG} > temp && mv temp ${LOG}
3030
@@ -37,7 +37,7 @@ Example `version number`
3737
3838- Tag the release in git:
3939
40- git tag -s v${VERSION} -m "signed ${VERSION} tag"
40+ git tag -a - s v${VERSION} -m "signed ${VERSION} tag"
4141
4242 If you do not have a gpg key, use -u instead; it is important for
4343 Debian packaging that the tags are annotated
@@ -49,11 +49,14 @@ Example `version number`
4949 where ` origin ` is the name of the ` github.com:scientific-python/spin `
5050 repository
5151
52- - Review the github release page:
52+ - Review the github tags page:
5353
5454 https://github.com/scientific-python/spin/tags
5555
56- - Update ` version ` in ` spin/__init__.py ` .
56+ and create a release. Paste the content of "${VERSION}.md" into the
57+ release notes, apart from the title line starting with ` # ` .
58+
59+ - Update ` version ` in ` spin/__init__.py ` to ` 0.Xrc0.dev0 ` .
5760
5861- Commit changes:
5962
0 commit comments