Automatic conventional version
Project description
GIT-CONVENTIONAL-VERSION
Find version automatically based on git tags and commit messages.
The tool is very specific in its function, so it is very flexible.
You can use it as a part of many different integrations and it will not break your process.
Install
python3 -m pip install git-conventional-version
Usage
Get new bumped final version:
gcv
Get new bumped release candidate version:
gcv --type=rc
Get current (old) version, 0.0.0 if none exists:
gcv --old
Example of CI automation script:
old=$(gcv --old)
new=$(gcv)
# check if version bump would happen
if [ ! $new == $old ]; then
# if yes, update setup.cfg
sed -i "s/^version.*/version = $new/g" setup.cfg
# and commit release
git add setup.cfg
git commit -m "$new"
git tag "$new"
git push --tags
git push
fi
Version formats
Tags are equivalent to versions, no suffix or prefix is added or interpreted. Formats follow https://www.python.org/dev/peps/pep-0440/.
- Final version
Standard tag is in the format \d+\.\d+\.d+
ie. 1.0.0
. It can be divided into major
. minor
. patch
versions.
It is automatically bumped based on commits messages and old version of the same type (look at Git commit message convention
below).
- Pre-release versions
Pre-release versions bumps are calculated based on last final version, its expected bump and old version of the same pre-release type.
-
- Release candidate version
Format \d+\.\d+\.d+rc\d+
ie. 1.0.0rc1
.
-
- Developmental version
Format \d+\.\d+\.d+dev\d+
ie. 1.0.0dev1
.
-
- Alpha version
Format \d+\.\d+\.d+a\d+
ie. 1.0.0a1
.
-
- Beta version
Format \d+\.\d+\.d+b\d+
ie. 1.0.0b1
.
- Local version
Also, local version can be created from commit sha and old version: \d+\.\d+\.d\+.+
ie. 0.0.0+79ad
.
Git commit message convention
Convention is based on https://www.conventionalcommits.org/en/v1.0.0/ (it's good!). At the moment, only the following rules apply (I usually use only these but more can be added easily):
- Start commit with 'fix:' or 'fix(.*):' to bump patch version.
- Start commit with 'feat:' or 'feat(.*):' to bump minor version.
- Include in the commit line with 'breaking change:' to bump major version.
Automatic changelog
On branch where your version tags are present, you can generate changelog:
gcv-log
Full changelog is generated and printed to stdout. You can redirect it to a file. Assumes that you are about to release next version if not on commit with final version.
Notices
Automatically handling many types of version tags in git is more complicated than it initially seems like.
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 git-conventional-version-1.0.2.tar.gz
.
File metadata
- Download URL: git-conventional-version-1.0.2.tar.gz
- Upload date:
- Size: 6.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 05e61e32ddb867f9b751e6e6fed2b3038c87b0c9313adb7a6d7bc7288754a416 |
|
MD5 | 9c16d58ea64ce8648e86bc67ab709648 |
|
BLAKE2b-256 | e93ae8386256d529b4c5c64d6533b4460c8739b8a1d9945a628d80deeb11bc04 |
File details
Details for the file git_conventional_version-1.0.2-py3-none-any.whl
.
File metadata
- Download URL: git_conventional_version-1.0.2-py3-none-any.whl
- Upload date:
- Size: 9.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d268c4fe475ae1cf538756967cfa6490465b5aac685b79c22366bdf7dd5f6b7 |
|
MD5 | 7ea783dd39181463890c053a5bd801c4 |
|
BLAKE2b-256 | e1b103b730a05729392e8ad8a1c50f1606ae9c942cdc91cc3f8a90ffae168cf0 |