-
Notifications
You must be signed in to change notification settings - Fork 0
/
release-plz.toml
55 lines (46 loc) · 1.58 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[changelog]
body = """
## [{{ version | trim_start_matches(pat="v") }}]{%- if release_link -%}({{ release_link }}){% endif %}
_{{ timestamp | date(format="%d %B %Y") }}_
{% for group, commits in commits | group_by(attribute="group") -%}
{%- if group != "chore" %}
### {{ group | upper_first }}
{% for commit in commits -%}
{%- if commit.scope and commit.scope != package -%}
* *({{commit.scope}})* {% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message | upper_first }}{%- if commit.links %} ({% for link in commit.links %}[{{link.text}}]({{link.href}}) {% endfor -%}){% endif %}
{% else -%}
* {% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message | upper_first }}
{% endif -%}
{%- endfor %}
{%- endif %}
{%- endfor -%}
"""
commit_parsers = [
{ message = "^feat", group = "added" },
{ message = "^changed", group = "changed" },
{ message = "^deprecated", group = "deprecated" },
{ message = "^fix", group = "fixed" },
{ message = "^security", group = "security" },
{ message = "^chore", group = "chore" },
{ message = "^.*", group = "other" },
]
[workspace]
dependencies_update = true
features_always_increment_minor = true
pr_labels = ["release"]
release_always = false
release_commits = "^(feat|fix)[(:]"
[[package]]
name = "c2pa"
changelog_path = "./CHANGELOG.md"
# This being the most important crate in the workspace,
# we will leave the changelog in the repo root instead
# of in the `sdk` folder (which would be the default).
[[package]]
name = "export_schema"
publish = false
release = false
[[package]]
name = "make_test_images"
publish = false
release = false