[changelog]
header = """
# Changelog
All notable changes to this project will be documented in this file.\n
"""
body = """
{% if version %}\
## [{{ version | replace(from="v", to="") }}] - {{ 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
"""
trim = true
footer = """"""
[git]
conventional_commits = true
commit_parsers = [
{ message = "^feat*", group = "Features" },
{ message = "^fix*", group = "Bug Fixes" },
{ message = "^doc*", group = "Documentation" },
{ message = "^perf*", group = "Performance" },
{ message = "^refactor*", group = "Refactor" },
{ message = "^style*", group = "Styling" },
{ message = "^test*", group = "Testing" },
{ message = "^chore\\(release\\): prepare for*", skip = true },
{ message = "^chore*", group = "Miscellaneous Tasks" },
{ message = "^ci*", group = "Continuous Integration/Deployment" },
{ message = "^build*", group = "Building, Automation and Tooling" },
{ body = ".*security", group = "Security" },
]
filter_commits = false
tag_pattern = "v[0-9]*"
skip_tags = "v0.1.0-beta.1"