Skip to main content

Simple semantic-version bumper in python that works.

Project description

Current version: 1.1.3

Compatible with Python >=2.7 and >=3.5

BumpyTrack

Bumping the (semantic) version of your software every time a release is done can be a tedious task, if you:

  • Have the version written in various files, e.g. setup.py or a dedicated version file.
  • Manage versioning with tags in GIT.

This little script automates this process for you.

Say you're using git-flow and you've just merged a feature to your development branch. You can just checkout and pull it, and then do:

bumpytrack minor  # or major if you have breaking changes, or patch if it's a simple bugfix

It will:

  • Replace the version string in all relevant files (see config below).
  • Commit those changes to GIT, taking care not to commit anything else.
  • Create a GIT tag for this new version.

Now you're free to push, merge to master and deploy!

For the above version string replacements we'll need some config. This example should be autoexplicative. Create a pyproject.toml or add your config to the one you already have in the root of your repository and you're good to go.

Installation

pip install bumpytrack

Then add a pyproject.toml to the root of your repository (if you don't already have it) and configure it like this.

Help

The script is really simple, and has a decent on-line documentation. Just do:

bumpytrack --help

Some of the available options:

  --current-version CURRENT_VERSION
                        force current version instead using version in config
                        file.
  --new-version NEW_VERSION
                        force new version instead using version in config
                        file.
  --git-commit          GIT: Commit files with version replacements.
  --no-git-commit
  --git-tag             GIT: Tag this reference with the new version.
  --no-git-tag
  --config-path CONFIG_PATH
                        path to config file. Defaults to pyproject.toml in
                        current directory.
  --verbose

You can also just peek at the code. Not much of it... it just adds one to some little numbers ;p

Development

Make sure you have the lastest pip and pipenv versions:

pip install --update pip pipenv

To start developing, start the environment by:

pipenv shell
pipenv install -d

This tool uses both pipenv for development and setuptools for packaging and distribution. To this date there is not a 100% community-accepted best practice so I've taken this approach. In summary:

To add an application dependency, add it in setup.py and leave it with a loose version definition. Then, just do pipenv install -e . to install the dependency. Pipenv locking mecanism will work as expected, since bumpytrack itself in in the [packages] section of Pipfile (check Pipfile.lock and you'll find the deps there).

To add a development dependency, add it to Pipfile via pipenv install -d <my-dependency>.

This way there's a single source of truth for package definition. No need to repeat the deps in setup.py and Pipfile*.

Tests

To test the project run pytest inside the pipenv. Once you have something running, run tox to check it's compatible with all python versions supported.

IMPORTANT: in order to make tox test with different python versions, those have to be installed. pyenv is reccomended for that purpose. tox-pyenv is installed so it should work out of the box.

Dev tasks automation and publishing to PyPI

This project uses pepython for automation. There you'll find tasks to build and publish the package to PyPI.

Check the project out and the tasks.py file for more info.

License

This project is licensed under the MIT License - see the LICENSE file for details.

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

bumpytrack-1.1.3.tar.gz (5.6 kB view details)

Uploaded Source

Built Distribution

bumpytrack-1.1.3-py2-none-any.whl (6.4 kB view details)

Uploaded Python 2

File details

Details for the file bumpytrack-1.1.3.tar.gz.

File metadata

  • Download URL: bumpytrack-1.1.3.tar.gz
  • Upload date:
  • Size: 5.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.16

File hashes

Hashes for bumpytrack-1.1.3.tar.gz
Algorithm Hash digest
SHA256 f8fff7d99eb96dfdd47713cc88c4747a432dba8f6992b2ea5d6bd9e45f53da05
MD5 5f2b51b09dd1941f02ea3fea0436fb2d
BLAKE2b-256 103c8cf7b939c2cd5803e8cbf3235c3bacf87ce51e96a1f07cd67c1808d0d498

See more details on using hashes here.

Provenance

File details

Details for the file bumpytrack-1.1.3-py2-none-any.whl.

File metadata

  • Download URL: bumpytrack-1.1.3-py2-none-any.whl
  • Upload date:
  • Size: 6.4 kB
  • Tags: Python 2
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.16

File hashes

Hashes for bumpytrack-1.1.3-py2-none-any.whl
Algorithm Hash digest
SHA256 b112da649486a864e4fecfa63a8db65bce396bc4a3823375010e502dbe6affab
MD5 d8c74f5cd3f23484f3ddce715c593894
BLAKE2b-256 e18e2edf707860245fe1625af09eb128ad95158fd76df153ce902c37fccec3ba

See more details on using hashes here.

Provenance

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