Skip to content

Commit 1f2b41c

Browse files
authored
chore: add contributor list to GitHub releases (#200)
chore: add root changelog chore: don't create GH releases for codegen and macro crates
1 parent 42eba08 commit 1f2b41c

File tree

4 files changed

+24
-40
lines changed

4 files changed

+24
-40
lines changed
File renamed without changes.

cot-codegen/CHANGELOG.md

Lines changed: 0 additions & 22 deletions
This file was deleted.

cot-macros/CHANGELOG.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

release-plz.toml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
[workspace]
2+
git_release_enable = false
3+
4+
git_release_body = """
5+
{{ changelog }}
6+
{% if remote.contributors %}
7+
### Contributors
8+
{% for contributor in remote.contributors %}
9+
* @{{ contributor.username }}
10+
{% endfor %}
11+
{% endif %}
12+
"""
13+
14+
[[package]]
15+
name = "cot" # name of the package to configure
16+
# include commits from internal crates in the changelog
17+
changelog_include = ["cot-codegen", "cot-macros"]
18+
# set the path of the changelog to the root of the repository
19+
changelog_path = "./CHANGELOG.md"
20+
git_release_enable = true # create GitHub release
21+
22+
[[package]]
23+
name = "cot-cli" # name of the package to configure
24+
git_release_enable = true # create GitHub release

0 commit comments

Comments
 (0)