Input current semantic version
Get next version or compare versions
Copy the calculated version number
Semantic Versioning (SemVer) is a versioning scheme for software that uses a three-part number: MAJOR.MINOR.PATCH. It provides a clear way to communicate changes in your software and helps users understand the impact of updates.
The version format is: MAJOR.MINOR.PATCH (e.g., 2.4.1). Increment the MAJOR version for incompatible API changes, MINOR for backwards-compatible functionality, and PATCH for backwards-compatible bug fixes.
MAJOR (X.0.0): Breaking changes that are not backwards compatible.
MINOR (0.X.0): New features that are backwards compatible.
PATCH (0.0.X): Bug fixes that are backwards compatible.
Pre-release: 1.0.0-alpha, 1.0.0-beta.1 for pre-release versions.
Build metadata: 1.0.0+20130313144700 for build information.
Get $200 free DigitalOcean credit or sponsor us on GitHub!