1[changelog] 2header = "# Changelog\n\n" 3body = """ 4{% for group, commits in commits | group_by(attribute="group") %} 5### {{ group | upper_first }} 6{% for commit in commits %} 7- {{ commit.message | upper_first }} ([`{{ commit.id | truncate(7) }}`]({{ commit.remote }}{{ commit.id }})) 8{% endfor %} 9{% endfor %} 10""" 11footer = "\n_This changelog was automatically generated._" 12trim = true 13tag_pattern = "v[0-9]*" 14 15[git] 16conventional = true 17