Version V

v0.0.3

Version V is a simple Semantic Versioning.

No tags, no build metadata, modified major version spec.

TAG.FEATURE.CHANGE

FEATURE is always a number. TAG.FEATURE indicates if a feature exists in a version.

FEATURE is incremented when 0 or more features are added.

Unchanged or higher FEATURE versions (with unchanged TAG) must not remove any previous features.

CHANGE is always a number.

CHANGE is incremented with every consumable version.

FEATURE may be reset when TAG is changed.

CHANGE may be reset when TAG is changed or when FEATURE is incremented.

TAG is a string containing arbitrary characters.

TAG should not contain special characters that may cause confusion. E.g. TAG should not contain '.', '\n', '\t'.

The last digits of TAG, if any, may be used to compare versions with a different TAG.

Unchanged TAG may indicate upgrade compatibility, depending on the value of TAG.

The following TAG values indicate upgrade compatibility:

Projects may define further TAG values that indicate upgrade compatibility e.g. lts-2012.

The following TAG values usually do not indicate upgrade compatibility:

implementation recommendations

comparing versions

FEATURE and CHANGE are compared numerically, FEATURE being more significant.

TAG is the most significant.

If TAG ends with digits, those are compared numerically, if the rest of the tag matches.

related