mirror of
https://github.com/semver/semver.git
synced 2026-07-11 06:53:03 -05:00
[GH-ISSUE #197] Semantic Versioning Specification (SemVer) 9.entry #1865
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 @muzir on GitHub (May 9, 2014).
Original GitHub issue: https://github.com/semver/semver/issues/197
At examples of this entry; there is an example version like "1.0.0-0.3.7" but isn't it a conflict with " Numeric identifiers MUST NOT include leading zeroes" sentence at the same entry? Because this example pre-release is starting with "0" after "-" symbol.
@crazedsanity commented on GitHub (May 9, 2014):
It's not a conflict: the version after the dash (0.3.7) has a major version of 0 (zero), minor version of 3, patch of 7. It's perfectly valid to have a zero as any of the version bits.
@FichteFoll commented on GitHub (May 9, 2014):
No, the zero in this case is a number by itself. What the clause excludes is things like
01.@jeffhandley commented on GitHub (Jul 9, 2014):
Sounds like this can be closed, @Haacked.