Skip to main content

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 .version file - file generation is the responsibility of an outer script
  • Includes alpha and beta increments
  • Supports the --set-current option to receive the current version number from a source other than Git tags
  • Requires an increment - patch is 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-run option

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:

  • major change e.g. 5.6.2 to 6.0.0
  • minor change e.g. 5.6.2 to 5.7.0
  • patch change e.g. 5.6.2 to 5.6.3
  • beta change e.g. 5.7.beta3 to 5.7.beta4
  • alpha change 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 cases.

Use the provided vernum.gitlab-ci.yml to use it in GitLab. Here's an example:

include:
  - project: 'vernum/vernum'
    ref: stable
    file: 'vernum.gitlab-ci.yml'

stages:
  - Build
  - Test
  - Pre-release
  - Release
  - Post-release

deliver:
    stage: Post-release
    script:
        - echo "Edit this script to deploy or distribute v$(cat .version)"

The CI/CD template will provide a set of manual jobs following the rules:

  • Numbered version increments (patch, minor, major) only on the default branch
  • Alpha and beta increments only on branches that start with next-

Usage:

  1. Go to the pipeline view in GitLab for the project and choose the latest pipeline on the appropriate branch
  2. Confirm the pipeline represents the commit you intend to release
  3. Go into the "Latest version info" when it's done, and confirm that the latest version number is accurate
  4. Click the "play" button on the appropriate release job (major, minor, alpha, etc.)
  5. After the release job is complete play the "Increment Version" job - it will fail if played too soon
  6. When the "Mark Release in GitLab" job is complete, go into it to confirm the new version

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

vernum-6.0.2.tar.gz (4.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vernum-6.0.2-py3-none-any.whl (5.5 kB view details)

Uploaded Python 3

File details

Details for the file vernum-6.0.2.tar.gz.

File metadata

  • Download URL: vernum-6.0.2.tar.gz
  • Upload date:
  • Size: 4.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.11.6 Linux/5.4.109+

File hashes

Hashes for vernum-6.0.2.tar.gz
Algorithm Hash digest
SHA256 ca5fafc5b16713e4ea2dadd818c216606ecc539f69f97f97b8163bc33d4ea352
MD5 b821bc0b6b3fd44d4e5d5450db15371e
BLAKE2b-256 be9a2783116494be1744b09ea1dce1901fa9fbc7dba3685a8a2a2ef56ea37413

See more details on using hashes here.

File details

Details for the file vernum-6.0.2-py3-none-any.whl.

File metadata

  • Download URL: vernum-6.0.2-py3-none-any.whl
  • Upload date:
  • Size: 5.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.11.6 Linux/5.4.109+

File hashes

Hashes for vernum-6.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 9187ab31dc0887e1c7743c0b9ae2fb01d39df021d86349561fb22f3432e0e6ff
MD5 139bca201e610ecb0db06d06a9c4e977
BLAKE2b-256 acdbfac7c9ab303fc6c1d761b4e94938e986640dbd22a19424d2b4971f235786

See more details on using hashes here.

Supported by

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