bump

About¶
cz bump is a powerful command that automatically determines and increases your project's version number based on your commit history.
It analyzes your commits to determine the appropriate version increment according to semantic versioning principles.
Note
In the following documentation, the term "configuration file" refers to pyproject.toml, .cz.toml or other configuration files.
We will use pyproject.toml as the configuration file throughout the documentation.
See Configuration file for more details.
Key Features¶
- Automatic Version Detection: Analyzes commit history to determine the appropriate version bump
- Manual Version Control: Supports manual version specification when needed
- Pre-release Support: Handles alpha, beta, and release candidate versions
- Multiple Version Schemes: Supports both PEP 440 and semantic versioning formats
Version Increment Rules¶
The version follows the MAJOR.MINOR.PATCH format, with increments determined by your commit types:
| Increment | Description | Conventional commit map |
|---|---|---|
MAJOR |
Breaking changes introduced | BREAKING CHANGE, bang (e.g. feat!) |
MINOR |
New features | feat |
PATCH |
Fixes and improvements | fix, perf, refactor |
Version Schemes (--version-scheme)¶
By default, Commitizen uses PEP 440 for version formatting. You can switch to semantic versioning using either:
-
Command line:
cz bump --version-scheme semver -
Configuration file:
pyproject.toml[tool.commitizen] version_scheme = "semver"
Available options are:
pep440: PEP 440 (default and recommended for Python projects)semver: Semantic Versioning (recommended for non-Python projects)
You can also set this in the configuration with version_scheme = "semver".
Note
pep440 and semver are quite similar, although their difference lies in
how the prereleases look. For example, 0.3.1a0 in pep440 is equivalent to 0.3.1-a0 in semver.
The following table illustrates the difference between the two schemes:
| Version Type | pep440 | semver |
|---|---|---|
| Non-prerelease | 0.1.0 |
0.1.0 |
| Prerelease | 0.3.1a0 |
0.3.1-a0 |
| Devrelease | 0.1.1.dev1 |
0.1.1-dev1 |
| Dev and pre | 1.0.0a3.dev1 |
1.0.0-a3-dev1 |
PEP440 Version Examples¶
Commitizen supports the PEP 440 version format, which includes several version types. Here are examples of each:
Standard Releases¶
0.9.0 # Initial development release
0.9.1 # Patch release
0.9.2 # Another patch release
0.9.10 # Tenth patch release
0.9.11 # Eleventh patch release
1.0.0 # First stable release
1.0.1 # Patch release after stable
1.1.0 # Minor feature release
2.0.0 # Major version release
Pre-releases¶
1.0.0a0 # Alpha release 0
1.0.0a1 # Alpha release 1
1.0.0b0 # Beta release 0
1.0.0rc0 # Release candidate 0
1.0.0rc1 # Release candidate 1
Development Releases¶
1.0.0.dev0 # Development release 0
1.0.0.dev1 # Development release 1
Combined Pre-release and Development¶
1.0.0a1.dev0 # Development release 0 of alpha 1
1.0.0b2.dev1 # Development release 1 of beta 2
Note:
postreleases (e.g.,1.0.0.post1) are not currently supported.
Command line options¶
--files-only¶
Bumps the version in the files defined in version_files without creating a commit and tag on the git repository,
cz bump --files-only
--changelog¶
Generate a changelog along with the new version and tag when bumping. See changelog for more details.
cz bump --changelog
--prerelease¶
The bump is a pre-release bump, meaning that in addition to a possible version bump the new version receives a
pre-release segment compatible with the bump’s version scheme, where the segment consist of a phase and a
non-negative number. Supported options for --prerelease are the following phase names alpha, beta, or
rc (release candidate). For more details, refer to the
Python Packaging User Guide.
Note that as per semantic versioning spec
Pre-release versions have a lower precedence than the associated normal version. A pre-release version indicates that the version is unstable and might not satisfy the intended compatibility requirements as denoted by its associated normal version.
For example, the following versions (using the PEP 440 scheme) are ordered by their precedence and showcase how a release might flow through a development cycle:
1.0.0is the currently published version1.0.1a0after committing afix:for pre-release1.1.0a1after committing an additionalfeat:for pre-release1.1.0b0after bumping a beta release1.1.0rc0after bumping the release candidate1.1.0next feature release
--increment-mode¶
--increment-mode=linear (default)¶
Ensures that bumping pre-releases maintains linearity.
Bumping a pre-release with lower precedence than the current pre-release phase maintains the current phase of higher precedence.
For example, if the current version is 1.0.0b1 then bumping with --prerelease alpha will continue to bump the beta phase.
--increment-mode=exact¶
Applies the exact changes that have been specified with --increment or determined from the commit log.
For example, --prerelease beta will always result in a b tag, and --increment PATCH will always increase the patch component.
Examples¶
The following table illustrates the difference in behavior between the two modes:
| Increment | Pre-release | Start Version | --increment-mode=linear |
--increment-mode=exact |
|---|---|---|---|---|
MAJOR |
2.0.0b0 |
2.0.0 |
3.0.0 |
|
MINOR |
2.0.0b0 |
2.0.0 |
2.1.0 |
|
PATCH |
2.0.0b0 |
2.0.0 |
2.0.1 |
|
MAJOR |
alpha |
2.0.0b0 |
3.0.0a0 |
3.0.0a0 |
MINOR |
alpha |
2.0.0b0 |
2.0.0b1 |
2.1.0a0 |
PATCH |
alpha |
2.0.0b0 |
2.0.0b1 |
2.0.1a0 |
--check-consistency¶
Check whether the versions defined in version_files and the version in Commitizen configuration are consistent before bumping version.
cz bump --check-consistency
For example, if we have the following configuration file pyproject.toml:
[tool.commitizen]
version = "1.21.0"
version_files = [
"src/__version__.py",
"setup.py",
]
and the following version files src/__version__.py and setup.py:
__version__ = "1.21.0"
from setuptools import setup
setup(..., version="1.0.5", ...)
When you run cz bump --check-consistency, Commitizen will verify that the current version in pyproject.toml (1.21.0) exists in all files listed in version_files.
In this example, it will detect that setup.py contains 1.0.5 instead of 1.21.0, causing the bump to fail.
Partial updates on failure
If the consistency check fails, Commitizen may have already updated some files (like pyproject.toml and src/__version__.py) before detecting the inconsistency.
In this case, you'll need to restore the files to their previous state.
To resolve this issue:
-
Restore the modified files to their previous state:
git checkout . -
Manually update the version in
setup.pyto match the version inpyproject.toml:setup.pyfrom setuptools import setup setup(..., version="1.21.0", ...) -
Run the bump command again:
cz bump --check-consistency
--local-version¶
Bump the local portion of the version.
For example, if we have the following configuration file pyproject.toml:
[tool.commitizen]
version = "5.3.5+0.1.0"
When you run cz bump --local-version, it will bump only the local version 0.1.0 and keep the public version 5.3.5 intact, bumping to the version 5.3.5+0.2.0.
--annotated-tag¶
Create annotated tags.
It is also available via configuration files.
For example, in pyproject.toml:
[tool.commitizen]
annotated_tag = true
--annotated-tag-message¶
Create annotated tags with the given message.
It is also available via configuration files.
For example, in pyproject.toml:
[tool.commitizen]
annotated_tag_message = "Annotated tag message"
--changelog-to-stdout¶
Send the incremental changelog generated by cz bump to stdout.
Any other messages generated by cz bump will be sent to stderr.
When this flag is used, --changelog is implied.
However, it is recommended to set --changelog (or the setting update_changelog_on_bump) explicitly when the option --changelog-to-stdout is used.
Useful scenarios¶
This is useful to pipe the newly created changelog to another tool. For example, it can be sent to an auditing system, or to create a GitHub Release, etc.
cz bump --changelog --changelog-to-stdout > body.md
--git-output-to-stderr¶
If --git-output-to-stderr is used, git commands output is redirected to stderr.
Useful when used with --changelog-to-stdout and piping the output to a file,
For example, git commit output may pollute stdout, so it is recommended to use this flag when piping the output to a file.
--retry¶
If you use tools like pre-commit, you can add this flag. It will retry the commit if it fails the first time.
Useful to combine with code formatters, like Prettier.
--major-version-zero¶
Breaking changes does not bump the major version number.
Say you have a project with the version 0.1.x and you commit a breaking change like this:
fix(magic)!: fully deprecate whatever
and you run
cz bump --major-version-zero
Then the version of your project will be bumped to 0.2.0 instead of 1.0.0.
Note
A project in its initial development should have a major version zero, and even breaking changes should not bump that major version from zero. This command ensures that behavior.
We recommend setting major_version_zero = true in your configuration file while a project
is in its initial development. Remove that configuration using a breaking-change commit to bump
your project's major version to v1.0.0 once your project has reached maturity.
Warning
This option is only compatible with projects that have major version number zero, 0.x.x for example.
It fails when used with projects that have a version number greater than zero like 1.x.x.
If used together with a manual version, the command also fails.
# This fails
cz bump 0.1.0 --major-version-zero
--gpg-sign¶
Create gpg signed tags.
cz bump --gpg-sign
--template¶
Provides your own changelog jinja template. See the template customization section
--extra¶
Provides your own changelog extra variables by using the extras settings or the --extra/-e parameter.
cz bump --changelog --extra key=value -e short="quoted value"
See the template customization section.
--build-metadata¶
Provides a way to specify additional metadata in the version string. This parameter is not compatible with --local-version as it uses the same part of the version string.
cz bump --build-metadata yourmetadata
Will create a version like 1.1.2+yourmetadata.
This can be useful for multiple things
- Git hash in version
- Labeling the version with additional metadata.
Note
Commitizen ignores everything after + when it bumps the version.
It is therefore safe to write different build-metadata between versions.
Warning
Normally, you should not use this functionality, but if you decide to do so, keep in mind that:
- Version
1.2.3+a, and1.2.3+bare the same version! Tools should not use the string after+for version calculation. This is probably not a guarantee (example in helm) even tho it is in the spec. - It might be problematic having the metadata in place when doing upgrades depending on what tool you use.
--get-next¶
Provides a way to determine the next version and write it to stdout. This parameter is not compatible with --changelog
and manual version.
cz bump --get-next
Will only output the next version, e.g., 1.2.3. This can be useful for determining the next version based on CI for non-production environments/builds.
Compare with --dry-run
--dry-run provides a more detailed output including the changes as they would appear in the changelog file, while --get-next only outputs the next version.
The following is the output of cz bump --dry-run:
bump: version 3.28.0 → 3.29.0
tag to create: v3.29.0
increment detected: MINOR
The following is the output of cz bump --get-next:
3.29.0
Warning
The --get-next flag will raise a NoneIncrementExit if the found commits are not eligible for a version bump.
For information on how to suppress this exit, see avoid raising errors.
--allow-no-commit¶
Allow the project version to be bumped even when there's no eligible version. This is most useful when used with --increment {MAJOR,MINOR,PATCH} or [MANUAL_VERSION]
# bump a minor version even when there's only bug fixes, documentation changes or even no commits
cz bump --incremental MINOR --allow-no-commit
# bump version to 2.0.0 even when there's no breaking changes changes or even no commits
cz bump --allow-no-commit 2.0.0
--version-scheme¶
See Version Schemes.
Configuration file options¶
tag_format¶
tag_format and version_scheme are combined to make Git tag names from versions.
These are used in:
cz bump: Find previous release tag (exact match) and generate new tag.- Find previous release tags in
cz changelog. - If
--incremental: Using the latest version found in the changelog, scan existing Git tags with 89\% similarity match. --rev-rangeis converted to Git tag names withtag_formatbefore searching Git history.- If the
scmversion_provideris used, it uses different regexes to find the previous version tags: - If
tag_formatis set to$version(default):VersionProtocol.parser(allowsvprefix) - If
tag_formatis set: Custom regex similar to SemVer (not as lenient as PEP440 e.g. on dev-releases)
Commitizen supports two types of formats, a simple and a more complex.
cz bump --tag-format="v$version"
cz bump --tag-format="v$minor.$major.$patch$prerelease.$devrelease"
In your configuration file:
[tool.commitizen]
tag_format = "v$major.$minor.$patch$prerelease"
The variables must be preceded by a $ sign and optionally can be wrapped in {}. The default is $version.
Supported variables:
| Variable | Description |
|---|---|
$version, ${version} |
fully generated version |
$major, ${major} |
MAJOR increment |
$minor, ${minor} |
MINOR increment |
$patch, ${patch} |
PATCH increment |
$prerelease, ${prerelease} |
Prerelease (alpha, beta, release candidate) |
$devrelease, ${devrelease}` |
Development release |
version_files¶
Identify the files or glob patterns which should be updated with the new version.
Commitizen will update its configuration file automatically when bumping,
regarding if the file is present or not in version_files.
You may specify the version_files in your configuration file.
[tool.commitizen]
version_files = [
"src/__version__.py",
]
It is also possible to provide a pattern for each file, separated by a colon (e.g. file:pattern). See the below example for more details.
[tool.commitizen]
version_files = [
"packages/*/pyproject.toml:version",
"setup.json:version",
]
Example scenario¶
We have a project with the following configuration file pyproject.toml:
[tool.commitizen]
version_files = [
"src/__version__.py",
"packages/*/pyproject.toml:version",
"setup.json:version",
]
For the reference "setup.json:version", it means that it will look for a file setup.json and will only change the lines that contain the substring "version".
For example, if the content of setup.json is:
{
"name": "magictool",
"version": "1.2.3",
"dependencies": {
"lodash": "1.2.3"
}
}
After running cz bump 2.0.0, its content will be updated to:
{
"name": "magictool",
- "version": "1.2.3",
+ "version": "2.0.0",
"dependencies": {
"lodash": "1.2.3"
}
}
Note
Files can be specified using relative (to the execution) paths, absolute paths, or glob patterns.
Historical note
This option was renamed from files to version_files.
bump_message¶
Template used to specify the commit message generated when bumping.
Defaults to: bump: version $current_version → $new_version
| Variable | Description |
|---|---|
$current_version |
the version existing before bumping |
$new_version |
version generated after bumping |
Example configuration¶
[tool.commitizen]
bump_message = "release $current_version → $new_version [skip-ci]"
update_changelog_on_bump¶
When set to true, cz bump is equivalent to cz bump --changelog.
[tool.commitizen]
update_changelog_on_bump = true
annotated_tag¶
When set to true, cz bump is equivalent to cz bump --annotated-tag.
[tool.commitizen]
annotated_tag = true
gpg_sign¶
When set to true, cz bump is equivalent to cz bump --gpg-sign. See --gpg-sign.
[tool.commitizen]
gpg_sign = true
major_version_zero¶
When set to true, cz bump is equivalent to cz bump --major-version-zero. See --major-version-zero.
[tool.commitizen]
major_version_zero = true
pre_bump_hooks¶
A list of optional commands that will run right after updating version_files
and before actual committing and tagging the release.
Useful when you need to generate documentation based on the new version. During execution of the script, some environment variables are available:
| Variable | Description |
|---|---|
CZ_PRE_IS_INITIAL |
True when this is the initial release, False otherwise |
CZ_PRE_CURRENT_VERSION |
Current version, before the bump |
CZ_PRE_CURRENT_TAG_VERSION |
Current version tag, before the bump |
CZ_PRE_NEW_VERSION |
New version, after the bump |
CZ_PRE_NEW_TAG_VERSION |
New version tag, after the bump |
CZ_PRE_MESSAGE |
Commit message of the bump |
CZ_PRE_INCREMENT |
Whether this is a MAJOR, MINOR or PATCH release |
CZ_PRE_CHANGELOG_FILE_NAME |
Path to the changelog file, if available |
[tool.commitizen]
pre_bump_hooks = [
"scripts/generate_documentation.sh"
]
post_bump_hooks¶
A list of optional commands that will run right after committing and tagging the release.
Useful when you need to send notifications about a release, or further automate deploying the release. During execution of the script, some environment variables are available:
| Variable | Description |
|---|---|
CZ_POST_WAS_INITIAL |
True when this was the initial release, False otherwise |
CZ_POST_PREVIOUS_VERSION |
Previous version, before the bump |
CZ_POST_PREVIOUS_TAG_VERSION |
Previous version tag, before the bump |
CZ_POST_CURRENT_VERSION |
Current version, after the bump |
CZ_POST_CURRENT_TAG_VERSION |
Current version tag, after the bump |
CZ_POST_MESSAGE |
Commit message of the bump |
CZ_POST_INCREMENT |
Whether this was a MAJOR, MINOR or PATCH release |
CZ_POST_CHANGELOG_FILE_NAME |
Path to the changelog file, if available |
[tool.commitizen]
post_bump_hooks = [
"scripts/slack_notification.sh"
]
prerelease_offset¶
Offset with which to start counting prereleases.
Defaults to: 0
[tool.commitizen]
prerelease_offset = 1
version_scheme¶
See Version Schemes.
Avoid raising errors¶
Some situations from Commitizen raise an exit code different from 0. If the error code is different from 0, any CI or script running Commitizen might be interrupted.
If you have a special use case, where you don't want to raise one of this error codes, you can tell Commitizen to not raise them.
Recommended use case¶
At the moment, we've identified that the most common error code to skip is
| Error name | Exit code |
|---|---|
| NoneIncrementExit | 21 |
There are some situations where you don't want to get an error code when some commits do not match your rules, you just want those commits to be skipped.
cz -nr 21 bump
Easy way¶
Check which error code was raised by Commitizen by running in the terminal
echo $?
The output should be an integer like this
3
And then you can tell Commitizen to ignore it:
cz --no-raise 3
You can tell Commitizen to skip more than one if needed:
cz --no-raise 3,4,5
Longer way¶
Check the list of exit_codes and understand which one you have to skip and why.
Remember to document somewhere this, because you'll forget.
For example if the system raises a NoneIncrementExit error, you look it up
on the list, and then you can use the exit code:
cz -nr 21 bump
Custom bump¶
Read the customizing section.