Skip to content

Commit

Permalink
fix: add missing comma in release commit title (#403)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alicia Lopez committed Apr 13, 2020
1 parent 2309ab9 commit 3ba611a
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 @@ -368,7 +368,7 @@ class ReleasePreparation {
} = this;

const releaseInfo = isLTS ? `'${ltsCodename}' (LTS)` : '(Current)';
const messageTitle = `${date} Version ${newVersion} ${releaseInfo}`;
const messageTitle = `${date}, Version ${newVersion} ${releaseInfo}`;

const messageBody = [];
if (isSecurityRelease) {
Expand Down

0 comments on commit 3ba611a

Please sign in to comment.