[changelog]
header = """
# Changelog\n
\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 %}
- {% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message | upper_first }}\
{% endfor %}
{% endfor %}\n
"""
trim = true
postprocessors = [
]
[git]
conventional_commits = true
filter_unconventional = true
split_commits = false
commit_preprocessors = [
]
commit_parsers = [
{ message = "^feat", group = "๐ Features" },
{ message = "^fix", group = "๐ Fixes" },
{ message = "^doc", group = "๐ Documentation" },
{ message = "^perf", group = "โก๏ธ Performance" },
{ message = "^refactor", group = "๐ Refactor" },
{ message = "^style", group = "๐จ Styling" },
{ message = "^test", group = "๐งช Testing" },
{ message = "^chore: release", skip = true },
{ message = "^ci", skip = true },
{ body = ".*security", group = "๐ก๏ธ Security" },
{ message = "^revert", group = "โฉ๏ธ Revert" },
]
protect_breaking_commits = false
filter_commits = false
tag_pattern = "v[0-9]*"
skip_tags = "v0.1.0-beta.1"
ignore_tags = ""
topo_order = false
sort_commits = "oldest"