Open jiansoung opened 6 years ago
Given a version number MAJOR.MINOR.PATCH, increment the:
MAJOR.MINOR.PATCH
MAJOR
MINOR
PATCH
Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.
A version specifier consists of a series of version clauses, separated by commas. For example:
~= 0.9, >= 1.0, != 1.3.4.*, < 2.0
The comparison operator determines the kind of version clause:
Versioning In Software Management
Semantic Versioning
Given a version number
MAJOR.MINOR.PATCH
, increment the:MAJOR
version when you make incompatible API changes,MINOR
version when you add functionality in a backwards-compatible manner, andPATCH
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.Version Specifiers
A version specifier consists of a series of version clauses, separated by commas. For example:
~= 0.9, >= 1.0, != 1.3.4.*, < 2.0
The comparison operator determines the kind of version clause:
References