Skip to main content

Versioning system with semantic versioning and generic version formats

Project description

Versioning Package

The versioning package is a fork from the version package which implements semantic versioning. The primary reason for forking version is to extend functionality to support a non-semantic versioning schema.

pip install enhanced-versioning==0.2.1

Semantic version implementation

The Enhanced-Versioning package provides SemanticVersion which implements versioning as described in Semantic Versioning spec 2.0.0-rc.1.

Example of simple X.Y.Z version:

>>> from enhanced_versioning import SemanticVersion

>>> v = SemanticVersion('1.2.3')

>>> v
SemanticVersion('1.2.3')

>>> str(v)
'1.2.3'

>>> v.major
1

>>> v.minor
2

>>> v.patch
3

>>> v.pre_release
[]

>>> v.build
[]

Example with pre-release and build versions:

>>> v2 = SemanticVersion('2.7.3-rc.2.15+19.e02afe3')

>>> v2.major
2

>>> v2.minor
7

>>> v2.patch
3

>>> v2.pre_release
['rc', 2, 15]

>>> v2.build
[19, 'e02afe3']

SemanticVersion supports rich comparison operators (<, <=, >, >=, ==, !=), and thus can be sorted:

>>> versions = [SemanticVersion('1.0.0+0.3.7'),
...             SemanticVersion('1.0.0'),
...             SemanticVersion('1.0.0-beta.11'),
...             SemanticVersion('0.9.0'),
...             SemanticVersion('1.0.0-rc.1'),
...             SemanticVersion('1.0.0-rc.1+build.1'),
...             SemanticVersion('1.0.0-alpha.1')]

>>> print('\n'.join(map(str, sorted(versions))))
0.9.0
1.0.0-alpha.1
1.0.0-beta.11
1.0.0-rc.1
1.0.0-rc.1+build.1
1.0.0
1.0.0+0.3.7

Non-Semantic version implementation

The Versioning package provides NonSematicVersion which implements a non-semantic versioning system as described below.

Non-Semantic Versioning Specification

This specification carries over much of the Sematic Versioning Specification except as noted.

  1. Software using Non-Semantic Version MAY declare a public API, but it is not required.
  2. A version MUST consist of one or more dot separated revisions. A revision MUST contain at least one non-negative integer or ASCII alphabetical character [0-9A-Za-z] in which integers, if present, must precede characters. The revision is treated as two parts. The integer value and the character value where the integer value takes precedence over the character value in comparisons. Each revision much increase. For instance: 1.2a.4 -> 1.2b.4 -> 1.3a.4.
  3. See Semantic Versioning Specification Rule 3
  4. Non-Semantic Versioning does not define a standard for stability.
  5. Non-Semantic Versioning does not require a public API to be defined.
  6. Revisions to the left MUST carry greater weight than revisions to the right, but Non-Semantic Versioning does not define precisely what each revision must mean.
  7. Revisions to the right MUST be reset to the appropriate beginning value when revisions to the left are incremented. The integer value of a revision MUST be reset to 0. The character value SHOULD be reset to 'a'.
  8. See rule 7 above.
  9. See Semantic Versioning Specification Rule 9 regarding pre-releases.
  10. See Semantic Versioning Specification Rule 10 regarding builds.
  11. Precedence MUST be calculated by separating individual revisions and pre-release identifiers. Precedence is determined first by the number of revisions with more revisions taking precedence over fewer. If the number of revisions is equal, then precedence is determined by the first difference when comparing revisions from left to right where the integer values of the revisions are compared numerically first followed by the character values compared alphabetically. Example: 1 < 1.0 < 1.1a < 1.1e < 1.2a. When all revisions are equal, the precedence must be determined by pre-releases. See Semantic Versioning Specification Rule 11 for full details on pre-release precedence.

Example of non-semantic versioning:

>>> from enhanced_versioning import NonSemanticVersion

>>> v = NonSemanticVersion('1')

>>> v
NonSemanticVersion('1')


>>> str(v)
'1'

>>> v.revisions
['1']

>>> v.pre_release
[]

>>> v.build
[]

Example with pre-release and build versions:

>>> v2 = NonSemanticVersion('1.4f.2c-rc.2.15+19.e02afe3')

>>> v2
NonSemanticVersion('1.4f.2c-rc.2.15+19.e02afe3')


>>> str(v2)
'1.4f.2c-rc.2.15+19.e02afe3'

>>> v2.revisions
['1', '4f', '2c']

>>> v2.pre_release
['rc', 2, 15]

>>> v2.build
[19, 'e02afe3']

NonSemanticVersion supports rich comparison operators (<, <=, >, >=, ==, !=), and thus can be sorted:

>>> versions = [NonSemanticVersion('1.0.4d.7f+0.3.7'),
...             NonSemanticVersion('1.0.4d.7f'),
...             NonSemanticVersion('1.0.4d.7f-beta.11'),
...             NonSemanticVersion('0.9.4d.7f'),
...             NonSemanticVersion('1.0.4d.7f-rc.1'),
...             NonSemanticVersion('1.0.4d.7f-rc.1+build.1'),
...             NonSemanticVersion('1.0.4d.7f-alpha.1'),
...             NonSemanticVersion('1.0.2f.12k+build.3')]

>>> print('\n'.join(map(str, sorted(versions))))
0.9.4d.7f
1.0.2f.12k+build.3
1.0.4d.7f-alpha.1
1.0.4d.7f-beta.11
1.0.4d.7f-rc.1
1.0.4d.7f-rc.1+build.1
1.0.4d.7f
1.0.4d.7f+0.3.7

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

enhanced-versioning-0.2.2.tar.gz (7.6 kB view details)

Uploaded Source

Built Distribution

enhanced_versioning-0.2.2-py3-none-any.whl (11.1 kB view details)

Uploaded Python 3

File details

Details for the file enhanced-versioning-0.2.2.tar.gz.

File metadata

  • Download URL: enhanced-versioning-0.2.2.tar.gz
  • Upload date:
  • Size: 7.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.20.1 setuptools/45.1.0 requests-toolbelt/0.8.0 tqdm/4.36.1 CPython/3.6.1

File hashes

Hashes for enhanced-versioning-0.2.2.tar.gz
Algorithm Hash digest
SHA256 65080ade9f4624461847d1766d4d0e21147f4b97277a112e48da413479bf4a3f
MD5 06e03453fd175a98462bd0220503b1dd
BLAKE2b-256 5b87d0f25ebbee65e507757f0c4ab0c439d50d369ebaaee3ce6b7dd92c01c4c3

See more details on using hashes here.

File details

Details for the file enhanced_versioning-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: enhanced_versioning-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 11.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.20.1 setuptools/45.1.0 requests-toolbelt/0.8.0 tqdm/4.36.1 CPython/3.6.1

File hashes

Hashes for enhanced_versioning-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 d925a977a5a1989d7a69cc438eb8166361408d62ba5e8cb019b3d3759210e541
MD5 7ffa2e1351223f948b7016098cc13369
BLAKE2b-256 059bb5bae1b05f6d053b1d2363a52765df8640516630c895382a3a404cb8539b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page