Skip to content

Commit

Permalink
Use h3 headings to match pre-existing changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
dcodeIO committed Oct 25, 2020
1 parent 99b9e0a commit 79dba49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 79dba49

Please sign in to comment.