33 lines
923 B
TOML
33 lines
923 B
TOML
[changelog]
|
|
header = "# Changelog\n"
|
|
body = """
|
|
{% if version %}\
|
|
## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
|
|
{% else %}\
|
|
## [Unreleased]
|
|
{% endif %}\
|
|
{% for group, commits in commits | group_by(attribute="group") %}
|
|
### {{ group | upper_first }}
|
|
{% for commit in commits %}
|
|
- {{ commit.message | upper_first }}\
|
|
{% endfor %}
|
|
{% endfor %}\n
|
|
"""
|
|
footer = ""
|
|
trim = true
|
|
|
|
[git]
|
|
conventional_commits = true
|
|
filter_unconventional = true
|
|
commit_parsers = [
|
|
{ message = "^feat", group = "Features" },
|
|
{ message = "^fix", group = "Bug Fixes" },
|
|
{ message = "^refactor", group = "Refactor" },
|
|
{ message = "^perf", group = "Performance" },
|
|
{ message = "^docs", group = "Documentation" },
|
|
{ message = "^test", group = "Testing" },
|
|
{ message = "^ci", group = "CI/CD" },
|
|
{ message = "^chore", group = "Miscellaneous" },
|
|
]
|
|
filter_commits = false
|
|
tag_pattern = "v[0-9].*"
|