From 4b7ff6f0030ab70c1d291fbe5b03b7cb41d7e8aa Mon Sep 17 00:00:00 2001 From: link2xt Date: Mon, 15 May 2023 12:27:02 +0000 Subject: [PATCH] build(git-cliff): add period at the end of changelog entry titles Make it consistent with the rest of the changelog. --- cliff.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cliff.toml b/cliff.toml index 031763064..5c9183715 100644 --- a/cliff.toml +++ b/cliff.toml @@ -60,7 +60,7 @@ body = """ {% for group, commits in commits | group_by(attribute="group") %} ### {{ group | upper_first }} {% for commit in commits %} - - {% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message | upper_first }}\ + - {% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message | upper_first }}.\ {% for footer in commit.footers %}{% if 'BREAKING CHANGE' in footer.token %} {% raw %} {% endraw %}- {{ footer.value }}\ {% endif %}{% endfor %}\