Semver Calculator

// Parse, compare, and bump semantic versions

Major
1
Minor
2
Patch
3
1.2.3 < 1.3.0 (1.3.0 is newer)

#About Semver Calculator

Free online semantic versioning calculator. Parse version strings, bump major/minor/patch versions, and compare two versions to determine which is newer. This tool runs entirely in your browser — your data is never sent to a server. Just paste your input, get instant results, and copy with one click. No sign-up or installation required.

#FAQ

What is semantic versioning?
Semantic versioning (semver) uses a MAJOR.MINOR.PATCH format. Increment MAJOR for breaking changes, MINOR for backward-compatible features, and PATCH for backward-compatible bug fixes. Pre-release labels like -beta.1 can be appended.
How do I compare two semantic versions?
Compare major versions first, then minor, then patch. For example, 2.0.0 > 1.9.9 because the major version is higher. Pre-release versions have lower precedence than the normal version (1.0.0-alpha < 1.0.0).
</> Embed this tool

Copy this code to embed the tool on your website. Adjust the height to fit your layout.

<iframe src="https://www.browserutils.dev/embed/semver-calculator" width="100%" height="500" frameborder="0" title="Semver Calculator"></iframe>

#Related