We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ff78aa commit d03814dCopy full SHA for d03814d
src/gren.js
@@ -198,7 +198,7 @@ function getLastTags(gren, releases) {
198
reject(chalk.red(filteredTags[0].tag.name + ' is a release, use --override flag to override an existing release!'));
199
}
200
201
- console.log('Tags found: ' + filteredTags.map(function (tag) {
+ console.log('Tags found: ' + filteredTags.map(function(tag) {
202
return tag.tag.name;
203
}).join(', '));
204
@@ -698,7 +698,7 @@ function createChangelog(gren, body) {
698
return;
699
700
701
- var newReleaseName = body.match(/(##\s[\w\.]+)/)[0];
+ var newReleaseName = body.match(/(##\s[\w\s.]+)/)[0];
702
703
if (data.match(newReleaseName)) {
704
if (gren.options.force) {
0 commit comments