dont append '0' to tag name

This commit is contained in:
Igor Klopov 2016-09-27 17:48:54 +03:00
parent f3f92cdfdf
commit 4e7dff3922

View File

@ -8,7 +8,7 @@ const expand = expandTemplate();
function tagFromVersion (version) {
const mj = major(version);
const mn = minor(version);
return `v${mj}.${mn}.0`;
return `v${mj}.${mn}`;
}
export function localPlace (opts) {