Most voted "semver" questions
Versioning technique using MAJOR.MINOR.PATCH to indicate respectively new functions with compatibility break, only new function maintaining compatibility and only troubleshooting.
Learn more…3 questions
Sort by count of
-
29
votes1
answer1008
viewsWhen to increment the version using Semantic Versioning?
When using Semantic Versioning we define different versions in the X.Y.Z format being X, Y, Z nonnegative integers. Thus, given an X.Y.Z version: We increment X if a modification incompatible with…
-
3
votes1
answer790
viewsHow to do Semantic Versioning (Semver) with GIT?
One question that I’ve always had and gives me a lot of headache is about how I should do Semantic Versioning with GIT. I should take into consideration the commit, one "release" of the project, or…
-
0
votes0
answers178
viewsHow to do semantic versioning?
I am working with a software in Visual Basic, that already exists for some time, but does not use standardized semantic versioning, I read some articles as semver.org and I had two doubts: 1 - What…