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 1ef7973 commit 353dedbCopy full SHA for 353dedb
.github/workflows/bump-version.js
@@ -14,7 +14,7 @@ let newVersion = latestPublish;
14
15
// If the main release gets a major bump but did not get published yet, the package.json version
16
// will be higher than the one retrieved from the marketplace, so we need to increment from the main release
17
-// E.g. package.json gets bumped to 1.5.0 -> 1.6.0
+// E.g. package.json gets bumped from 1.6.0 -> 2.0.0
18
if (semver.major(release) - semver.major(latestPublish) === 1) {
19
newVersion = semver.inc(release, "minor", semver.rel);
20
}
0 commit comments