Easy semantic versioning for projects in Git
Project description
VerNum
Version numbering for project releases
Rat icons created by Freepik - Flaticon
Warning: Breaking Changes
Starting in VerNum v4.0.0:
- No longer generates a
.versionfile - file generation is the responsibility of an outer script - Includes
alphaandbetaincrements - Supports the
--set-currentoption to receive the current version number from a source other than Git tags - Requires an increment -
patchis no longer the default - No longer checks Git status before proceeding
- No longer provides the option to automatically update the Git tag, and no longer supports the
dry-runoption
Default functionality
- Read the Git tags in the current branch that match the pattern e.g. "v5.6.1" and pick the highest value
- Increment the version number for major, minor, patch, alpha, or beta releases
- Return the new version for later use
Installation
Requires Python 3 to run the command; your project can be anything.
pip3 install vernum
Usage (CLI)
Requirements:
- CD to the root of the project before running it
- Be on the branch that you use for releases (i.e.
master) - Be fully up-to-date in git (i.e. merged, committed, and pushed)
Then run the command, specifying the increment to trigger the change:
majorchange e.g. 5.6.2 to 6.0.0minorchange e.g. 5.6.2 to 5.7.0patchchange e.g. 5.6.2 to 5.6.3betachange e.g. 5.7.beta3 to 5.7.beta4alphachange e.g. 5.7.alpha8 to 5.7.alpha9- Leave it out for no change, just to view the current version
Source of truth
The default behaviour assumes that the source of truth for the current version comes from the highest valued Git tag in the current branch (based on a regular expression match) but VerNum does not actually update the Git tag. Note that a "v" at the beginning of the input version number is optional; it's not included in the output.
Alternatively, use the --set-current option to define a different current version to reference rather than a Git tag. The override is useful for:
- Bootstrapping a repo that has previous versions
- Using a downstream system as the source of truth for version numbers (such as an artifact repository)
- Fixing errors in the Git tag history
To update the Git tag, try something like:
vernum patch
git tag -a "cat $(.version)" -m "cat $(.version)"
git push origin "cat $(.version)"
Usage (GitLab CI/CD)
VerNum is designed for use withing GitLab CI/CD, and includes a CI/CD configuration template to support the most common use case
Use the provided vernum.gitlab-ci.yml to use it in GitLab. Here's an example:
include:
- project: 'steampunk-wizard/projects/vernum'
ref: stable
file: 'vernum.gitlab-ci.yml'
inputs:
resolution-limit: alpha
---
deliver:
extends: .release
script:
- echo "Edit this script to build and deliver v$(cat .version)"
The bundled CI/CD configuration assumes that version number incrementing is a manual process. It will only run deployments if the $VERNUM variable is set to a value other than none. The configuration includes options and a description to populate the "Run Pipeline" form in GitLab, making it easy to increment the version number and deliver a new release.
The resolution-limit input specifies the limit for the increment in the Run Pipeline form. It is NOT the actual increment, which is based on the environment variable. The limit must be either patch (which includes 3 options) or alpha (which includes all 5).
For an alternative to running a manual job to increment the version and deliver a new release, consider the GitLab CLI:
glab ci run --variables VERNUM:patch
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vernum-5.0.0.tar.gz.
File metadata
- Download URL: vernum-5.0.0.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.11.5 Linux/5.4.109+
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73e1c967528f8b1cca41f258c33cad601871df9614cc6605c60074dd15e56cdb
|
|
| MD5 |
2c4f6c3985361eb461672d86383a6fdc
|
|
| BLAKE2b-256 |
2a1c90325ada204a382350fa1344647bc740875ff7cd0314cb888efb61e6de92
|
File details
Details for the file vernum-5.0.0-py3-none-any.whl.
File metadata
- Download URL: vernum-5.0.0-py3-none-any.whl
- Upload date:
- Size: 5.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.11.5 Linux/5.4.109+
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8c823a5f28c95c909398fb0f78941eabd8f6987ae838bb0476dce7355d0300d
|
|
| MD5 |
c076c7be68efc61553b5ec23dd2d642c
|
|
| BLAKE2b-256 |
32ed0792cda552e49e4dee2296fe9a4212d5c07eab826dc8ed9382c8193abd4b
|