mirror of
https://github.com/semver/semver.git
synced 2026-07-11 06:53:03 -05:00
[GH-ISSUE #704] [Question] What if two variations of versions will merge and build system will change? #1343
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @0ank on GitHub (May 26, 2021).
Original GitHub issue: https://github.com/semver/semver/issues/704
I have two variations of the same version:
0.1.0-beta+verboseand0.1.0-beta+noverbose. That withverbosebuild metadata logs verbose information and one withnoverbosedoesn't.After this pre-releases I added new commandline option
--log, which enables functionality ofverbosevariation and I want to create a merged version. Additionally, I changed build system from GNU Make and MinGW Make to CMake.What version I have to bump in semver? Major or minor?
@ljharb commented on GitHub (May 26, 2021):
Those are all prereleases - the next non-prerelease version is based on whatever the differences are between it and the last non-prerelease version.
@0ank commented on GitHub (May 26, 2021):
But what if I have not any non-prerelease versions? 0.2.0 and never release version 0.1.0, or something different?
@ljharb commented on GitHub (May 26, 2021):
You can start at any version, or skip any version.
@0ank commented on GitHub (May 26, 2021):
Thank you.