change: format git-cliff commit hashes a bit better

Use a ':' instead of a '-' to separate commit hash from message

Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
Kevin Morris 2022-02-08 09:32:46 -08:00
parent 477e814cd8
commit a21c48afe7
No known key found for this signature in database
GPG key ID: F7E46DED420788F3

View file

@ -13,7 +13,7 @@ Release {{ version }} - {{ timestamp | date(format="%Y-%m-%d") }}
{% for group, commits in commits | group_by(attribute="group") %} {% for group, commits in commits | group_by(attribute="group") %}
{{ group | lower }}:\ {{ group | lower }}:\
{% for commit in commits %} {% for commit in commits %}
- {{ commit.id | truncate(length=8, end="") }} - {{ commit.message }}\ - {{ commit.id | truncate(length=8, end="") }}: {{ commit.message }}\
{% endfor %} {% endfor %}
{% endfor %}\n {% endfor %}\n
""" """