From a21c48afe7f48bd87a18ebe21cc1cd119a67f74c Mon Sep 17 00:00:00 2001 From: Kevin Morris Date: Tue, 8 Feb 2022 09:32:46 -0800 Subject: [PATCH] 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 --- cliff.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cliff.toml b/cliff.toml index 173beefc..bc09935b 100644 --- a/cliff.toml +++ b/cliff.toml @@ -13,7 +13,7 @@ Release {{ version }} - {{ timestamp | date(format="%Y-%m-%d") }} {% for group, commits in commits | group_by(attribute="group") %} {{ group | lower }}:\ {% for commit in commits %} -- {{ commit.id | truncate(length=8, end="") }} - {{ commit.message }}\ +- {{ commit.id | truncate(length=8, end="") }}: {{ commit.message }}\ {% endfor %} {% endfor %}\n """