Reputation: 1
Good day, fellows.
System architect and some developers from my company have said, that to use:
is the semantic versioning.
I have read the semver spec
and I can't find anything similar. Am I correct or not?
PS: it's not a joke, it's real and we use it in our CI pipeline, proof (our artifact in Harbor docker registry): https://i.sstatic.net/m7dqp.png
Upvotes: 0
Views: 54
Reputation: 3709
No, it can't! The number of commits doesn't represent the number of bug fixes (a bug fix could also require 100 commits) and the number of merge requests doesn't represent the number of added features (10 merge requests could be 10 bug fixes but no one new feature).
But in your company, that's an internal standard and probably it's really helpful internally. So, keep up with it even if you can't call it's a "real" semver 😉
Upvotes: 0