mirror of
https://github.com/semver/semver.git
synced 2026-07-11 05:12:48 -05:00
In which cases it is not necessary to change the version of my product. #625
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @90dread on GitHub (Apr 11, 2024).
I have a product that contains APIS and this product contains subscription plans. Added a new consumption plan for existing APIS or simply changed the name of the product owner. Should I change the version number? What would it be assuming that the product is in version 1.0.0?
@ljharb commented on GitHub (Apr 11, 2024):
if you added a new thing, it's semver-minor.
@steveklabnik commented on GitHub (Apr 12, 2024):
SemVer is generally better for libraries, which have code as their users, than applications, which have humans as their users.
If code needs to change to work, it's semver major.
If code doesn't need to change to work, but you need to add more code to support new features, it's semver minor.
If code doesn't need to change at all, and by updating you get bug fixes, it's semver patch.
@Talhasaleem110 commented on GitHub (Apr 14, 2024):
Great