Damus
Laser · 158w
Ya'll need to study https://semver.org/; never release new features in a patch release. Should have cut 0.6.0, instead.
Luke Childs ☂️ profile picture
It’s actually valid semver during 0.x.x releases. https://semver.org/#spec-item-4

Technically according to spec you can do anything during 0.x.x releases but it’s common convention to push the meanings across one place so:

- 0.5.3 > 0.6.0 = major bump
- 0.5.3 > 0.5.4 = minor bump
- No way to define a patch bump

This is the convention we’ve been following since initial launch of 0.1.0.
❤️1
Laser · 158w
That's not how pre 1.0.0 releases work. Both "major" and minor ride the y in x.y.z and patch releases are always reserved for bug fixes of existing functionaliy. "Patch version Z (x.y.Z | x > 0) MUST be incremented if only backward compatible bug fixes are introduced. A bug fix is defined as an in...