From 79dba49dcd5596db15591438ffa9bbc86378b423 Mon Sep 17 00:00:00 2001 From: dcode Date: Sun, 25 Oct 2020 17:52:58 +0100 Subject: [PATCH] Use h3 headings to match pre-existing changelogs --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 9d9144d..00a6e2d 100644 --- a/index.js +++ b/index.js @@ -171,7 +171,7 @@ export function generateReleaseNotes(commits) { } const sb = []; function writeSection(category, title) { - sb.push(`## ${title}\n\n`); + sb.push(`### ${title}\n\n`); for (let { subject, hash, body } of category) { sb.push(`* **${subject}** (${hash})\n`); if (body.length) {