Skip to content

Commit

Permalink
fix: add missing new line in changelog (#591)
Browse files Browse the repository at this point in the history
  • Loading branch information
targos committed Nov 8, 2021
1 parent 2a23e37 commit e7a95a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/prepare_release.js
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ class ReleasePreparation {
}
} else if (arr[idx].includes(`<a id="${lastRef.substring(1)}"></a>`)) {
const toAppend = [];
toAppend.push(`<a id="${newVersion}"></a>`);
toAppend.push(`<a id="${newVersion}"></a>\n`);
toAppend.push(releaseHeader);
toAppend.push('### Notable Changes\n');
if (isLTSTransition) {
Expand Down

0 comments on commit e7a95a4

Please sign in to comment.