Skip to content

Commit

Permalink
Merge branch 'main' into refactor/remove-async-trait
Browse files Browse the repository at this point in the history
  • Loading branch information
oestradiol authored Sep 19, 2024
2 parents 0858a2c + 4b75e60 commit 93bf22a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions release-plz.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,27 @@ git_tag_enable = true
changelog_update = true

[changelog]
body = """
## [{{ 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 }} by @{{ commit.author.name }}\
{%- if commit.links %} \
({% for link in commit.links %}[{{link.text}}]({{link.href}}) {% endfor -%})\
{% endif %}
{% else -%}
- {% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message }} by @{{ commit.author.name }}
{% endif -%}
{% endfor -%}
{% endfor %}
"""
commit_parsers = [
{ message = "^feat", group = "added" },
{ message = "^changed", group = "changed" },
Expand Down

0 comments on commit 93bf22a

Please sign in to comment.