forked from reubeno/brush
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease-plz.toml
More file actions
35 lines (33 loc) · 841 Bytes
/
Copy pathrelease-plz.toml
File metadata and controls
35 lines (33 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[workspace]
# disable the changelog for all packages
# ref: https://release-plz.ieni.dev/docs/extra/single-changelog
changelog_config = "cliff.toml"
changelog_update = false
git_release_enable = false
publish = true
[[package]]
name = "brush"
version_group = "brush-shell-group" # Version-locked to brush-shell
[[package]]
name = "brush-shell"
version_group = "brush-shell-group"
changelog_update = true
changelog_path = "./CHANGELOG.md"
changelog_include = [
"brush-core",
"brush-interactive-shell",
"brush-parser",
]
git_release_latest = true
git_release_draft = true
git_release_enable = true
git_release_name = "brush v{{ version }}"
git_release_body = """
{{ changelog }}
{% if remote.contributors %}
### Contributors
{% for contributor in remote.contributors %}
* @{{ contributor.username }}
{% endfor %}
{% endif %}
"""