-
Notifications
You must be signed in to change notification settings - Fork 558
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Decoupling from specific versioning formats (i.e. SemVer) #555
Comments
@FCamborda the argument of the second article that "project x" (cryptography in this case) doesn't follow SemVer (or PEP440) and that As you noted, CalVer doesn't yet define a breaking change. Tools that conform to conventional commits and automate change log creation do however. Removing this would make CalVer less useful for tracking and notifying developers of these log entries. IMO this complements CalVer more instead of less. Really, I see SemVer and CalVer as complementary but targeting different use cases. |
@kuw thanks for the reply! Precisely, we do not work with items like
|
@FCamborda IME conventional commits actually align more with numeric / sequence versioning (example 0.1.0.0) than SemVer. I obviously can't speak for the intent of the writer. But, this effort is intended to standardize the process used by the Angular project. You may be able to glean more there. The compatibility issue is clearer when you look at mapping the flow for |
Hi,
this is a very nice initiative! I understand and benefit of coupling commits with changelog specifics (i.e. sections "added", "fixed", "removed", etc).
However, when reading the documentation I see there's a lot of wording related to SemVer, which is not a bad thing, but makes me believe that it's the only supported versioning scheme?
I think either more wide-spread options should be mentioned (e.g. CalVer) or none is explicitly mentioned. The problem that I see with the current specification is that it includes "breaking" in a very SemVer-ish way, which by modern literature does not acknowledge other aspects of versioning in large-scale environments.
Further reads:
https://abseil.io/resources/swe-book/html/ch21.html
https://hynek.me/articles/semver-will-not-save-you/
This might make other developers believe that tooling aligned with ConventionalCommits should support SemVer, when in my eyes there's a big benefit of making them agnostic w.r.t. versioning format
The text was updated successfully, but these errors were encountered: