🏷️ Release Tags & Versioning Vocabulary
0 / 5 completed
1 / 5
A release manager announces: "The release is tagged as v3.2.1."
What do the three numbers in semantic versioning represent?
SemVer (Semantic Versioning) — MAJOR.MINOR.PATCH:
| Segment | When to bump | Backward compatible? |
|---|---|---|
| MAJOR | Breaking API change | No — requires consumer updates |
| MINOR | New feature added | Yes |
| PATCH | Bug fix | Yes |
Pre-release labels: v1.0.0-alpha.1, v1.0.0-rc.2. Convention: 0.x.x = unstable/experimental API. Key vocabulary: breaking change signal (major bump), backward compatibility, pre-release label.