Skip to content

Commit

Permalink
Merge pull request #353 from swisstopo/fix/prerelease-versioning
Browse files Browse the repository at this point in the history
Fix release versioning
  • Loading branch information
daniel-va authored Nov 19, 2024
2 parents fa572e2 + 164d1a8 commit 13c7f03
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/scripts/find-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ const findNextVersion = (tags, branch) => {
if (version.preRelease == null || version.patch !== 0) {
version.minor += 1;
version.patch = 0;
version.preRelease = null;
}
} else {
// It's a patch.
Expand Down

0 comments on commit 13c7f03

Please sign in to comment.