13 lines
310 B
TOML
13 lines
310 B
TOML
[changelog]
|
|
header = "Changelog"
|
|
body = """
|
|
{% for group, commits in commits | group_by(attribute="group") %}
|
|
### {{ group | upper_first }}
|
|
{% for commit in commits %}
|
|
- {{ commit.message | upper_first }}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
"""
|
|
trim = true
|
|
footer = "<!-- generated by git-cliff -->"
|