From a56c7ac78f9d7f6b4fb043d135b5e3d9ada89c70 Mon Sep 17 00:00:00 2001 From: Andrew Zhvakin Date: Thu, 17 May 2018 21:34:09 +0300 Subject: [PATCH] fix: use tagPrefix in CHANGELOG lifecycle step (#243) --- lib/lifecycles/changelog.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/lifecycles/changelog.js b/lib/lifecycles/changelog.js index 1eb16178e..136f8301a 100644 --- a/lib/lifecycles/changelog.js +++ b/lib/lifecycles/changelog.js @@ -30,7 +30,8 @@ function outputChangelog (args, newVersion) { var context if (args.dryRun) context = {version: newVersion} var changelogStream = conventionalChangelog({ - preset: 'angular' + preset: 'angular', + tagPrefix: args.tagPrefix }, context, {merges: null}) .on('error', function (err) { return reject(err)