Skip to content

semantic versioning

Oliver Beckstein edited this page Dec 12, 2015 · 2 revisions

Semantic versioning is a set of rules to number releases in a meaningful and consistent manner. The idea is that a user can immediately see from the release number how severe changes are between releases.

Summary of rules

The semantic versioning page contains the rules that we follow. In brief:

Given a version number MAJOR.MINOR.PATCH, increment the:

  1. MAJOR version when you make incompatible API changes,
  2. MINOR version when you add functionality in a backwards-compatible manner, and
  3. 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.

Clone this wiki locally