mirror of
https://github.com/semver/semver.git
synced 2026-07-11 06:53:03 -05:00
[GH-ISSUE #135] Clarify pre-release version meaning #1819
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 @dkrikun on GitHub (Jul 8, 2013).
Original GitHub issue: https://github.com/semver/semver/issues/135
It is stated that:
What does that exactly mean "might not satisfy"? In particular:
1.0.1,2.0-alphaand2.0, does that mean that the pre-release version is not necessarily backwards compatible w/1.0.1nor does2.0is backwards compatible w/2.0?1.0.1and1.1.0-alpha, is the latter backwards compatible w/ the former?@Tieske commented on GitHub (Jul 8, 2013):
well, its like it says; the 'associated normal version' of
2.0-alphais2.0. So the intent is to comply with the rules as version2.0but because it is unstable (an alpha version), it's not yet proven that it actually honors those requirements.Same for
1.1.0-alpha; it intents to be backwards compatible with1.0.1, but as it is unstable, it might not be.@dkrikun commented on GitHub (Jul 8, 2013):
Thanks, that makes it clear