Table of Contents

Code Versioning - Versioning scheme

About

The different scheme on the version number of a release of a module.

The argument it's just a number with versioning goes right out the window the moment that number is in a file path. Implications multiply.

After four hours of investigation it turned out that someone had made a breaking API change in a Java library, and had forgotten to bump up the version number — so when a dependent object tried to call into that library, the dispatch failed.

List

Content versioning

The one true way to address something — content-based shas. See Version Control - Commit Hash - Content Versioning

Common versioning scheme

common versioning scheme: major.minor[.revision[.build]]

Semantic Versioning

See Semantic Versioning 2.0.0

Version format of X.Y.Z (Major.Minor.Patch).

Calendar Versioning Scheme

See: http://calver.org/

Custom

Major.Minor[.Bugfix|-rc-number|-SNAPSHOT]

where:

Documentation / Reference