mirror of
https://github.com/semver/semver.git
synced 2026-07-11 03:53:53 -05:00
[GH-ISSUE #347] Multipale bugs fix increment #6244
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 @amitosdev on GitHub (Dec 19, 2016).
Original GitHub issue: https://github.com/semver/semver/issues/347
Let assume my current version is 2.0.0. We found few bugs in different modules. Those bugs are not related to each other but we are planning to fix all of them in the same version. What will be the next version number for this bug fixes? 2.0.1? 2.1.0? or even 2.0.5 (if we have for ex. 5 modules with different bugs in them)?
@scaytrase commented on GitHub (Dec 19, 2016):
The version is not a number of fixed bugs or implemented features. Version is the order (and the compatibility if speaking about semver) identifier for the release
The release numbers are incremented, so while you are not pushing a patch release for each bug the release number should be incremented once.
2.0.1should be correct here@jwdonahue commented on GitHub (Nov 29, 2017):
@amitosdev unless you have additional questions, can you please close this issue?