gitcraft 0.1.123

A template project for GitHub-related utilities.
[changelog]
header = """
# Changelog\n
All notable changes to this project will be documented in this file.\n
"""
footer = "Generated by git-cliff"
prepend = true  # ← Key change: New sections will be added at the TOP
body = """
{% if version %}
## [{{ version }}]
{% else %}
## [Unreleased]
{% endif %}

{% for group, commits in commits | group_by(attribute="group") %}
### {{ group | upper_first }}
{% for commit in commits %}
- {{ commit.message | trim }} ({{ commit.id | truncate(length=7, end="") }})
{% endfor %}
{% endfor %}
"""

[git]
conventional_commits = true
tag_pattern = "v[0-9]+\\.[0-9]+\\.[0-9]+"
commit_parsers = [
    # ... (keep your existing commit parsers)
]
filter_commits = false