From 4e97847f512effd782e9d39b628a96f4d043fb4b Mon Sep 17 00:00:00 2001 From: jdx <216188+jdx@users.noreply.github.com> Date: Fri, 5 Sep 2025 15:19:22 +0000 Subject: [PATCH] fix(release): add proper newline after New Contributors section in cliff template MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The previous fix to remove extra blank lines inadvertently caused the New Contributors section to run into the next version header. This adds a blank line after the contributor list to ensure proper separation between sections. This ensures the changelog has clean formatting with: - No extra blank lines between commits within sections - Proper blank line after the New Contributors section - Clear separation between version releases 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- cliff.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cliff.toml b/cliff.toml index 947d15bedf..eb0207275e 100644 --- a/cliff.toml +++ b/cliff.toml @@ -46,7 +46,8 @@ body = """ {%- if contributor.pr_number %} in \ [#{{ contributor.pr_number }}]($REPO/pull/{{ contributor.pr_number }})\ {% endif %}\ -{% endfor -%} +{% endfor %} + {% endif -%} {% macro commit(commit) -%} {% if commit.scope %}**({{commit.scope}})** {% endif -%}