Semantic Versioning
Rizing development uses Semantic Versioning to manage software versions and compatibility.
Given a version number MAJOR
.MINOR
.PATCH
, increment the:
- MAJOR version when you make incompatible API changes,
- MINOR version when you add functionality in a backwards compatible manner, and
- PATCH version when you make backwards compatible bug fixes.
Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.
Examples
# Version 1 compatible
1.0.0 # Version 1
1.0.1 # Version 1 (patch 1 - bug fixes only)
1.1.0 # Version 1 (with new features)
# Version 2 breaking changes from version 1
2.0.0 # Version 2
2.0.1 # Version 2 (patch 2 - bug fixes only)
2.1.0 # Version 2 (with new features)