-
Notifications
You must be signed in to change notification settings - Fork 26
/
release-plz.toml
30 lines (27 loc) · 1.17 KB
/
release-plz.toml
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
[workspace]
# set the path of all the crates to the changelog to the root of the repository
changelog_path = "./CHANGELOG.md"
git_release_enable = false
git_tag_enable = false
release_always = false # https://github.com/MarcoIeni/release-plz/issues/1805#issuecomment-2453048989
# This uses the single-changelog template from https://release-plz.ieni.dev/docs/extra/single-changelog
[changelog]
body = """
## `{{ package }}` - [{{ version | trim_start_matches(pat="v") }}]{%- if release_link -%}({{ release_link }}){% endif %} - {{ timestamp | date(format="%Y-%m-%d") }}
{% for group, commits in commits | group_by(attribute="group") %}
### {{ group | upper_first }}
{% for commit in commits %}
{%- if commit.scope -%}
- *({{commit.scope}})* {% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message }}{%- if commit.links %} ({% for link in commit.links %}[{{link.text}}]({{link.href}}) {% endfor -%}){% endif %}
{% else -%}
- {% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message }}
{% endif -%}
{% endfor -%}
{% endfor -%}
"""
[[package]]
name = "vortex"
git_tag_enable = true
git_release_enable = true
git_release_name = "{{ version }}"
git_tag_name = "{{ version }}"