Skip to content

Commit 22655a2

Browse files
Ignore bot contributions (#343)
1 parent 7b9d5d1 commit 22655a2

2 files changed

Lines changed: 19 additions & 2 deletions

File tree

RELEASE.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff 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

pyproject.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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"]

0 commit comments

Comments
 (0)