Semantic versioning module enriched by hotfix version
Project description
Overview
A python module to deal with modified semantic versioning.
Motivation
There are three numbers as main part of a version in semantic version (semver.org). Third number, patch, is defined as:
PATCH version when you make backward compatible bug fixes
However, sometimes we need to distinguish two types of a bugfix.
- bugfix which is released in a standard way
- bugfix which has to be release immidiately as hotfix
The first type is released in a standard release process and at the end the patch of a version is increased.
The second one is the case when we identified a bug which has to be fixed and released immidiately. In this case the version increased patch can potentially already exists as any sort of pre-release version.
Let's assume there is version 0.4.2 deployed in production. Versions 0.4.3-rc and 0.4.4-rc already exist in our non prod environment but they are not ready to be released. So, what should be the version of the hotfix? If we want to increase patch we would have to jump to 0.4.5 which may (and will) brings confusion in the versioning.
Fix version part
To solve to the scenario described above, we introduce 4th number to main version part. Let's call it fix version and define it as:
FIX version when you make hot fixes released immidiately
So the new version in the described scenario would be 0.4.2.1
At the end, the modification is only the one number.
Usage
Few samples how to use the module. There are tow classes:
- Version4: this class parses a version which includes the fix part as described above
- SemVersion: classis semver2.0 version parser
from semver4 import Version
version = Version4('2.4.4.0-alpha+123')
print(version)
# '2.4.4-alpha+123'
version = Version4(major=2, minor=4, patch=4, prerelease='beta', build='12346')
print(version)
# '2.4.4-beta+12346'
print(version.minor, version.fix)
# 4 0
print(version.core)
# '2.4.4'
print(version > Version('0.4.2.4'))
# True
print(version == '2.4.4-beta+12346')
# True
print(version == 'blabla')
# raises NotComparableError
version.inc_fix()
print(version)
# '2.4.4.1'
print(version.fix)
# 1
version.prerelease = 'rc'
version.metadata = '987'
print(version)
# '2.4.4.1-rc+987'
print(version.core)
# '2.4.4.1'
version.inc_minor().inc_major().inc_patch()
print(version)
# '3.0.1'
# classic semver2.0 parser
v = SemVersion('1.2.3-alpha+007')
print(v)
# '1.2.3-alpha+007'
Both, Version4 and SemVersion objects now support json serialization and yaml serialization.
import json
import yaml
from semver4 import Version
from semver4.yaml import get_version4_dumper, get_version4_loader
data = {
'version': Version('1.2.3.4-beta')
}
dumped = json.dumps(data, default=Version.json_enc)
print(dumped)
# '{"version": "1.2.3.4-beta"}'
print(json.loads(dumped, object_hook=Version.json_dec))
# {"version": 1.2.3.4-beta}
dumped = yaml.dump(data, Dumper=get_version4_dumper())
print(dumped)
# version: 1.2.3.4-beta
print(yaml.load(dumped, Loader=get_version4_loader()))
# {'version': 1.2.3.4-beta}
The PyYAML module is not installed with the package because it is required by only one specific feature of the semver4 package which makes it redundant in most of use cases. This also the reason the dumper and the loader are placed in dedicated module.
Installation of PyYAML:
python3 -m pip install PyYAML
# or python or py or whatever alias you have set
# add --user for installation to the user dir
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file semver4-0.0.1b8.tar.gz
.
File metadata
- Download URL: semver4-0.0.1b8.tar.gz
- Upload date:
- Size: 8.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5e10e7805a38e4a0688858fc0dd9584859d2141532285f01776dcc4f3db474df |
|
MD5 | 5018f82c55eef26c0a6947064bcfbaf6 |
|
BLAKE2b-256 | 7eefd7d21dbe836be00505d7fe0aa00e4a761363b0b01f7fa7b8471867842756 |
File details
Details for the file semver4-0.0.1b8-py3-none-any.whl
.
File metadata
- Download URL: semver4-0.0.1b8-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 077a683643c1567b6525f8e78c54915f094e807f8a5eaff074934ed05a6789ab |
|
MD5 | 465cc05cd3975010001406be7b6c7bed |
|
BLAKE2b-256 | f81e5087fa87cd9d1dc18960d8c44cbbbcc5e124e8a5ac5a472a3ecd6aa369b1 |