From d87902c9379412c5844006f523cb136e3665fd6e Mon Sep 17 00:00:00 2001 From: Miodec Date: Thu, 17 Aug 2023 17:04:46 +0200 Subject: [PATCH] build: update changelog footer and header --- bin/buildChangelog.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/buildChangelog.mjs b/bin/buildChangelog.mjs index 542590fa4..c233e3b6b 100644 --- a/bin/buildChangelog.mjs +++ b/bin/buildChangelog.mjs @@ -21,8 +21,8 @@ const stream = conventionalChangelog( ); const header = - "Thank you to all the contributors who made this release possible!\n\n---"; -const footer = `\n### Other\n\nVarious style, documentation, refactoring, performance, or build improvements.`; + "Thank you to all the contributors who made this release possible!"; +const footer = `\n### Other\n\n- Various style, documentation, refactoring, performance, or build improvements`; let log = ""; for await (const chunk of stream) {