2026-04-13 02:51:56 +00:00
|
|
|
[changelog]
|
|
|
|
|
header = """
|
|
|
|
|
# Changelog
|
|
|
|
|
|
2026-06-05 13:36:57 +00:00
|
|
|
All notable changes to TRCAA are documented here.
|
2026-04-13 02:51:56 +00:00
|
|
|
Commit types shown: feat, fix, perf, docs, refactor.
|
|
|
|
|
CI, chore, and build changes are excluded.
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
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 -%}
|
|
|
|
|
- {% if commit.scope %}**{{ commit.scope }}**: {% endif %}{{ commit.message | upper_first }}
|
|
|
|
|
{% endfor %}
|
|
|
|
|
{% endfor %}
|
|
|
|
|
"""
|
|
|
|
|
footer = ""
|
|
|
|
|
trim = true
|
|
|
|
|
|
|
|
|
|
[git]
|
|
|
|
|
conventional_commits = true
|
|
|
|
|
filter_unconventional = true
|
|
|
|
|
tag_pattern = "v[0-9].*"
|
|
|
|
|
ignore_tags = "rc|alpha|beta"
|
|
|
|
|
sort_commits = "oldest"
|
|
|
|
|
commit_parsers = [
|
|
|
|
|
{ message = "^feat", group = "Features" },
|
|
|
|
|
{ message = "^fix", group = "Bug Fixes" },
|
|
|
|
|
{ message = "^perf", group = "Performance" },
|
|
|
|
|
{ message = "^docs", group = "Documentation" },
|
|
|
|
|
{ message = "^refactor", group = "Refactoring" },
|
|
|
|
|
{ message = "^ci|^chore|^build|^test|^style", skip = true },
|
|
|
|
|
]
|