[changelog]
header = """
# Changelog\n
"""
body = """
{% if version %}\
## {{ version | trim_start_matches(pat="release-aide-") }} - {{ timestamp | date(format="%Y-%m-%d") }}
{% else %}\
## unreleased
{% endif %}\
{% if previous %}\
{% if previous.commit_id %}
[{{ previous.commit_id | truncate(length=7, end="") }}]({{ previous.commit_id }})...\
[{{ commit_id | truncate(length=7, end="") }}]({{ commit_id }})
{% endif %}\
{% endif %}\
{% for group, commits in commits | group_by(attribute="group") %}
### {{ group | upper_first }}
{% for commit in commits %}
- {{ commit.message | upper_first }} ([{{ commit.id | truncate(length=7, end="") }}]({{ commit.id }}))\
{% for footer in commit.footers -%}
, {{ footer.token }}{{ footer.separator }}{{ footer.value }}\
{% endfor %}\
{% endfor %}
{% endfor %}\n
"""
trim = true
footer = """
<!-- generated by git-cliff -->
"""
[git]
conventional_commits = true
filter_unconventional = true
split_commits = false
commit_preprocessors = [
{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](https://github.com/tamasfe/aide/issues/${2}))" },
]
commit_parsers = [
{ message = '^feat\([^)]*(aide|\*)[^)]*\)', group = "Features" },
{ message = '^fix\([^)]*(aide|\*)[^)]*\)', group = "Bug Fixes" },
{ message = '^doc\([^)]*(aide|\*)[^)]*\)', group = "Documentation" },
{ message = '^perf\([^)]*(aide|\*)[^)]*\)', group = "Performance" },
{ message = '^refactor\([^)]*(aide|\*)[^)]*\)', group = "Refactor" },
{ message = '^style\([^)]*(aide|\*)[^)]*\)', group = "Styling" },
{ message = '^test\([^)]*(aide|\*)[^)]*\)', group = "Testing" },
{ message = '^chore.*version\s*bump.*', skip = true },
{ message = '^chore.*:\s*version\s*$', skip = true },
{ message = '^chore.*changelog.*', skip = true },
{ message = '^chore\([^)]*(aide|\*)[^)]*\)', group = "Miscellaneous Tasks" },
{ body = '.*security', group = "Security" },
]
filter_commits = true
tag_pattern = "release-aide-[0-9]*"
skip_tags = "v0.1.0-beta.1"
ignore_tags = ""
date_order = false
sort_commits = "oldest"