git-conventional-commits
Advanced tools
Comparing version 2.5.1 to 2.5.2
@@ -138,3 +138,3 @@ module.exports = function (config) { | ||
if (commit.revert) { | ||
commitMarkdown += ` **Revert**`; | ||
commitMarkdown += '**Revert** '; | ||
} | ||
@@ -146,3 +146,3 @@ let descriptionMarkdown = escapeMarkdown(commit.description); | ||
}); | ||
commitMarkdown += ` ${descriptionMarkdown}`; | ||
commitMarkdown += descriptionMarkdown.trim(); | ||
@@ -154,4 +154,4 @@ let referencesMarkdown = [markdownCommitHash(commit.hash)]; | ||
}); | ||
commitMarkdown += ` (${referencesMarkdown.join(', ')})\n`; | ||
return commitMarkdown.trim(); | ||
commitMarkdown += ` (${referencesMarkdown.join(', ')})`; | ||
return commitMarkdown + "\n"; | ||
} | ||
@@ -158,0 +158,0 @@ |
{ | ||
"name": "git-conventional-commits", | ||
"version": "2.5.1", | ||
"version": "2.5.2", | ||
"description": "git conventional commits util", | ||
@@ -5,0 +5,0 @@ "licence": "GPLv3", |
74855