Following the SemVer guidelines with x.y.z
, I know I should start my developments with version 0.1.0
and do the following in case of:
- Breaking change: increment y instead of x (which shall remain to
0
until the first production release). - Feature: ???
- Patch: increment z.
As the question marks suggest, should I increment y or z when adding a new feature to my unreleased app?
The SemVer specification gives these instructions:
So basically, Z is incremented for fixes, Y is incremented for features, X is incremented for breaking changes whether they're about features or fixes.
While in the initial developments phase, we just don't deal with the breaking change part because we have no production users. Therefore, we should increment Z for fixes, and Y for features, no matter if the changes are backwards compatible or not.