27 lines
545 B
TOML
27 lines
545 B
TOML
[changelog]
|
|
header = ""
|
|
body = """
|
|
{% if version %}\
|
|
{{ version | trim_start_matches(pat="v") }}\
|
|
{% else %}\
|
|
Unreleased\
|
|
{% endif %}\
|
|
{% for commit in commits %}
|
|
- {{ commit.author.timestamp | date }} {{ commit.message | split(pat="\n") | first }}\
|
|
{% endfor %}
|
|
|
|
|
|
"""
|
|
footer = ""
|
|
|
|
[git]
|
|
conventional_commits = false
|
|
commit_parsers = [
|
|
{ message = "^Merge", skip = true },
|
|
{ message = "^Pull request", skip = true },
|
|
{ message = "^Release", skip = true },
|
|
]
|
|
filter_commits = false
|
|
tag_pattern = "[v0-9]*"
|
|
sort_commits = "newest"
|