diff --git a/templates/CHANGELOG.md.j2 b/templates/CHANGELOG.md.j2 index 2ae65cac..58751eb9 100644 --- a/templates/CHANGELOG.md.j2 +++ b/templates/CHANGELOG.md.j2 @@ -8,6 +8,11 @@ {# Category title: Breaking, Fix, Documentation #} ### {{ category | capitalize }} {# List actual changes in the category #} +{%- for commit in commits %} +{% if commit is not none and commit.descriptions is not none %} +- {{ commit.descriptions[0] | capitalize }} ([`{{ commit.short_hash }}`]({{ commit.hexsha | commit_hash_url }})) +{% endif %} +{%- endfor %}{# for commit #} {%- endfor %}{# for category, commits #}