Skip to main content

Generate version strings based on semantic versioning rules.

Project description

Helper tool to generate version strings based on semantic versioning rules. It provides a shell command which you can use in bash scripts and comes with Python classes which you can integrate in your code.

Installation

pip install versionbump

Usage

usage: versionbump [-h] -c CURRENT [-q] [-i]
               {major,minor,patch} [file [file ...]]

Arguments

  • -c / --current: Assume current version. (required)

  • -h / --help: Print help text and exit.

  • -q / --quiet: Don’t write anything to stdout.

  • -i / --ignore: Ignore invalid files

Increase version

$ versionbump -c 0.1.2 patch
0.1.3

Replace version in file(s)

$ cat version.txt
Current version: 0.1.2
$ versionbump -c 0.1.2 minor version.txt
0.1.3
$ cat version.txt
Current version: 0.1.3

If you want to replace the version string in more than one file, just pass them to versionbump aswell. Example:

$ versionbump -c 0.1.2 major file1.txt file2.txt file3.txt

Python library

VersionBump

from versionbump import VersionBump
vb = VersionBump('2.0.1')
vb.bump()              ## default value: 'patch'
print vb.get()         ## 2.0.2
print vb.get('patch')  ## 2

FileBump

from versionbump import FileBump
fo = open('version.txt', 'r+')
fb = FileBump(fo, '2.0.1')
fb.bump()              ## default value: 'patch', writes to file
print fb.get()         ## 2.0.2
print fb.get('patch')  ## 2

Alternatives

  • bumpversion by Filip Noetzel. Provides much more functionality like VCS integration.

  • grunt-bump by Vojta Jina. Integrates with the task runner grunt.

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

versionbump-1.0.0.tar.gz (3.4 kB view details)

Uploaded Source

File details

Details for the file versionbump-1.0.0.tar.gz.

File metadata

File hashes

Hashes for versionbump-1.0.0.tar.gz
Algorithm Hash digest
SHA256 3edb5280413df5c4c7498575a105067753b7cf2ba1e3ff8d0f4858050ea06b77
MD5 db1a7279ec4ac050743b71e738be0bbc
BLAKE2b-256 cbd08098a663ae878a7e6e9315bd3c35faa43bb3906d18889e73e4774aef366c

See more details on using hashes here.

Supported by

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