< All Topics
Print

Understanding our application versioning

Our version numbering is represented as follows:

X.YY.ZZ

X represent the MAJOR version

YY represent the MINOR version

ZZ represents the PATCH version

Numbering is used as follows:

  1. The MAJOR version is incremented 
  2. The MINOR version is incremented when we add functionality that is backward compatible with all other components of our solution.
  3. The PATCH version is incremented when ever there is a bug fix for a MINOR version. Note when the patch version is 0 it is not typically displayed.

Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.

References

Semantic Versioning 2.0.0

https://semver.org
Table of Contents