Is Semantic Versioning an Anti-Pattern?
surfingthe.cloud
Is Semantic Versioning an Anti-Pattern?
1–10 of 219 posts
Re: Is Semantic Versioning an Anti-Pattern?
#2If you are developing your own personal website with a static page and bootstrap, probably over kill.
We don't need to have a polarized opinion about everything.
Re: Is Semantic Versioning an Anti-Pattern?
#3Re: Is Semantic Versioning an Anti-Pattern?
#4Re: Is Semantic Versioning an Anti-Pattern?
#5 GitVersion looks at your git history and works out
the semantic version of the commit being built.
[1] https://github.com/GitTools/GitVersionRe: Is Semantic Versioning an Anti-Pattern?
#6I was very disappointed to learn that Italy did not, in fact, elect a Shiba Inu to office.
Re: Is Semantic Versioning an Anti-Pattern?
#7Previously discussed: https://news.ycombinator.com/item?id=13085952
Re: Is Semantic Versioning an Anti-Pattern?
#8Re: Is Semantic Versioning an Anti-Pattern?
#9Re: Is Semantic Versioning an Anti-Pattern?
#10some-library>=1.0.0,It means I can include a library and get non-breaking changes and all security updates until the next major release without worrying that a change is going to break me randomly. It doesn't mean I don't need to do testing, but it makes it a lot more likely that I won't accidentally break in some way I didn't expect due to a change upstream.
When I want to upgrade to a breaking change release I know I need to go look at the release notes to see what the breaking change is, and then make modifications to my application.
If a breaking change is made in a minor or point release I can open a bug with the project so they can revert this change in the next minor or point release.
(edited from <=2.0.0 to <2.0.0, as this was my original intent :) )