File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,15 +22,17 @@ Example `version number`
2222
2323- Autogenerate release notes
2424
25- changelist ${ORG}/${REPO} v${PREVIOUS} main --version ${VERSION} --out ${VERSION}.md
25+ changelist ${ORG}/${REPO} v${PREVIOUS} main --version ${VERSION} --config pyproject.toml -- out ${VERSION}.md
2626
2727- 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
31+ - Update ` version ` in ` pyproject.toml ` .
32+
3133- Commit changes:
3234
33- git add CHANGELOG.md
35+ git add pyproject.toml CHANGELOG.md
3436 git commit -m "Designate ${VERSION} release"
3537
3638- Tag the release in git:
@@ -50,3 +52,11 @@ Example `version number`
5052- Review the github release page:
5153
5254 https://github.com/scientific-python/scientific-python-hugo-theme/tags
55+
56+ - Update ` version ` in ` pyproject.toml ` .
57+
58+ - Commit changes:
59+
60+ git add pyproject.toml
61+ git commit -m 'Bump version'
62+ git push origin main
Original file line number Diff line number Diff line change 1+ [project ]
2+ name = " scientific-python-hugo-theme"
3+ version = " 0.4.dev0"
4+
5+ [tool .changelist ]
6+ # Profiles that are excluded from the contributor list.
7+ ignored_user_logins = [" dependabot[bot]" , " pre-commit-ci[bot]" , " web-flow" ]
You can’t perform that action at this time.
0 commit comments