From deba7a256da9b63263b5e72c2fc4f3a69639c2d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Tarti=C3=A8re?= Date: Thu, 18 Apr 2024 09:02:52 -1000 Subject: [PATCH] Add missing line between change title and list When a release has breaking changes, they are listed in a "Changed" section. Unlike other sections, this section title is directly followed by the change list, while other sections have a blank line to separate the title and the change list. For consistency make sure we have that blank line after all titles. --- internal/writer/writer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/writer/writer.go b/internal/writer/writer.go index 3b68b62..8937a9f 100644 --- a/internal/writer/writer.go +++ b/internal/writer/writer.go @@ -41,7 +41,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a {{end}} {{- if .Changed }} ### Changed -{{- range .Changed}} +{{range .Changed}} - {{.}} {{- end}} {{end}}