[changelog]
header = """
# Changelog\n
All notable changes to this project will be documented in this file.\n
"""
body = """
{% if version %}\
## [{{ version | trim_start_matches(pat="v") }}](https://git.sr.ht/~thatonelutenist/actm/refs/{{ version }}) - {{ 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.breaking %}[**breaking**] {% endif %}[{{ commit.message | upper_first }}](https://git.sr.ht/~thatonelutenist/actm/commit/{{ commit.id }})\
{% endfor %}
{% endfor %}\n
"""
trim = true
footer = """
<!-- generated by git-cliff -->
"""
[git]
conventional_commits = true
filter_unconventional = true
split_commits = false
commit_preprocessors = []
commit_parsers = [
{ message = "^feat", group = "Features"},
{ message = "^fix", group = "Bug Fixes"},
{ message = "^perf", group = "Performance"},
{ message = "^refactor", group = "Refactor"},
{ body = ".*security", group = "Security"},
]
filter_commits = true
tag_pattern = "[0-9.]*"
skip_tags = "[0-9]+\\.[0-9]+\\.[0-9]+-[a-zA-Z]+.[0-9]+"
ignore_tags = ""
date_order = false
sort_commits = "oldest"