We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
+
1 parent 5f263da commit 7eb6d75Copy full SHA for 7eb6d75
src/semver.ts
@@ -69,7 +69,7 @@ export async function bumpVersion(
69
const suffix =
70
typeof opts.suffix === "string"
71
? `-${opts.suffix}`
72
- : `+${fmtDate(new Date())}-${commits[0].shortHash}`;
+ : `-${fmtDate(new Date())}-${commits[0].shortHash}`;
73
pkg.version = config.newVersion = config.newVersion.split("-")[0] + suffix;
74
}
75
0 commit comments