Movatterモバイル変換


[0]ホーム

URL:


Skip to content

bump

Bump version

About

cz bump is a powerful command thatautomatically 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 topyproject.toml,.cz.toml or other configuration files.

We will usepyproject.toml as the configuration file throughout the documentation.

SeeConfiguration 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 bothPEP 440 andsemantic versioning formats

Version Increment Rules

The version follows theMAJOR.MINOR.PATCH format, with increments determined by your commit types:

IncrementDescriptionConventional commit map
MAJORBreaking changes introducedBREAKING CHANGE, bang (e.g.feat!)
MINORNew featuresfeat
PATCHFixes and improvementsfix,perf,refactor

--version-scheme

By default, Commitizen usesPEP 440 for version formatting. You can switch to semantic versioning using either:

  1. Command line:

    czbump--version-schemesemver

  2. Configuration file:

    pyproject.toml
    [tool.commitizen]version_scheme="semver"

Available options are:

You can also set this in the configuration file withversion_scheme = "semver".

Note

pep440 andsemver are quite similar, although their difference lies inhow the prereleases look. For example,0.3.1a0 in pep440 is equivalent to0.3.1-a0 in semver.

The following table illustrates the difference between the two schemes:

Version Typepep440semver
Non-prerelease0.1.00.1.0
Prerelease0.3.1a00.3.1-a0
Devrelease0.1.1.dev10.1.1-dev1
Dev and pre1.0.0a3.dev11.0.0-a3-dev1

PEP440 Version Examples

Commitizen supports thePEP 440 version format, which includes several version types. Here are examples of each:

Standard Releases

0.9.0    # Initial development release0.9.1    # Patch release0.9.2    # Another patch release0.9.10   # Tenth patch release0.9.11   # Eleventh patch release1.0.0    # First stable release1.0.1    # Patch release after stable1.1.0    # Minor feature release2.0.0    # Major version release

Pre-releases

1.0.0a0  # Alpha release 01.0.0a1  # Alpha release 11.0.0b0  # Beta release 01.0.0rc0 # Release candidate 01.0.0rc1 # Release candidate 1

Development Releases

1.0.0.dev0  # Development release 01.0.0.dev1  # Development release 1

Combined Pre-release and Development

1.0.0a1.dev0  # Development release 0 of alpha 11.0.0b2.dev1  # Development release 1 of beta 2

Note:post releases (e.g.,1.0.0.post1) are not currently supported.

Command line options

cz bump --help

--files-only

Bumps the version in the files defined inversion_files without creating a commit and tag on the git repository.

czbump--files-only

--changelog

Generate achangelog along with the new version and tag when bumping. Seechangelog for more details.

czbump--changelog

--prerelease

The bump is a pre-release bump, meaning that in addition to a possible version bump the new version receives apre-release segment compatible with the bump's version scheme, where the segment consists of aphase and anon-negative number. Supported options for--prerelease are the following phase namesalpha,beta, orrc (release candidate). For more details, refer to thePython Packaging User Guide.

Note that as persemantic versioning spec

Pre-release versions have a lower precedence than the associated normal version. A pre-release versionindicates that the version is unstable and might not satisfy the intended compatibility requirementsas denoted by its associated normal version.

For example, the following versions (using thePEP 440 scheme) are orderedby their precedence and showcase how a release might flow through a development cycle:

  • 1.0.0 is the currently published version
  • 1.0.1a0 after committing afix: for pre-release
  • 1.1.0a1 after committing an additionalfeat: for pre-release
  • 1.1.0b0 after bumping a beta release
  • 1.1.0rc0 after bumping the release candidate
  • 1.1.0 next feature release

--increment-mode

--increment-mode=linear (default)

Ensures that bumping pre-releasesmaintains 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 is1.0.0b1 then bumping with--prerelease alpha will continue to bump thebeta 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 ab tag, and--increment PATCH will always increase the patch component.

Examples

The following table illustrates the difference in behavior between the two modes:

IncrementPre-releaseStart Version--increment-mode=linear--increment-mode=exact
MAJOR2.0.0b02.0.03.0.0
MINOR2.0.0b02.0.02.1.0
PATCH2.0.0b02.0.02.0.1
MAJORalpha2.0.0b03.0.0a03.0.0a0
MINORalpha2.0.0b02.0.0b12.1.0a0
PATCHalpha2.0.0b02.0.0b12.0.1a0

--check-consistency

Check whether the versions defined inversion_files and the version in Commitizen configuration are consistent before bumping version.

czbump--check-consistency

For example, if we have the following configuration filepyproject.toml:

pyproject.toml
[tool.commitizen]version="1.21.0"version_files=["src/__version__.py","setup.py",]

and the following version filessrc/__version__.py andsetup.py:

src/__version__.py
__version__="1.21.0"
setup.py
fromsetuptoolsimportsetupsetup(...,version="1.0.5",...)

When you runcz bump --check-consistency, Commitizen will verify that the current version inpyproject.toml (1.21.0) exists in all files listed inversion_files.In this example, it will detect thatsetup.py contains1.0.5 instead of1.21.0, causing the bump to fail.

Partial updates on failure

If the consistency check fails, Commitizen may have already updated some files (likepyproject.toml andsrc/__version__.py) before detecting the inconsistency.In this case, you'll need to restore the files to their previous state.

To resolve this issue:

  1. Restore the modified files to their previous state:

    gitcheckout.

  2. Manually update the version insetup.py to match the version inpyproject.toml:

    setup.py
    from setuptools import setup- setup(..., version="1.0.5", ...)+ setup(..., version="1.21.0", ...)

  3. Run the bump command again:

    czbump--check-consistency

--local-version

Bump the local portion of the version.

For example, if we have the following configuration filepyproject.toml:

pyproject.toml
[tool.commitizen]version="5.3.5+0.1.0"

When you runcz bump --local-version, it will bump only the local version0.1.0 and keep the public version5.3.5 intact, bumping to the version5.3.5+0.2.0.

--annotated-tag

Create annotated tags.

It is also available via configuration files.

For example, inpyproject.toml:

pyproject.toml
[tool.commitizen]annotated_tag=true

Note

By default, Commitizen uses lightweight tags.

--annotated-tag-message

Create annotated tags with the given message.

It is also available via configuration files.

For example, inpyproject.toml:

pyproject.toml
[tool.commitizen]annotated_tag_message="Annotated tag message"

--changelog-to-stdout

Send the incremental changelog generated bycz bump tostdout.Any other messages generated bycz bump will be sent tostderr.

When this flag is used,--changelog is implied.However, it is recommended to set--changelog (or the settingupdate_changelog_on_bump) explicitly when the option--changelog-to-stdout is used.

Useful scenarios

Pipe the newly created changelog to another tool.

The output can be redirected to an auditing system, or used to create a GitHub Release, etc.

czbump--changelog--changelog-to-stdout>body.md

--git-output-to-stderr

Redirects git commands output tostderr.

Useful when used with--changelog-to-stdout and piping the output to a file.

For example,git commit output may pollutestdout, so it is recommended to use this flag when piping the output to a file.

--retry

If you use tools likepre-commit, you can add this flag.It will retry the commit if it fails the first time.

Useful to combine with code formatters, likePrettier.

--major-version-zero

Breaking changes do not bump the major version number.

Say you have a project with the version0.1.x and you commit a breaking change like this:

fix(magic)!: fully deprecate whatever

and you run

czbump--major-version-zero

Then the version of your project will be bumped to0.2.0 instead of1.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 settingmajor_version_zero = true in your configuration file while a projectis in its initial development. Remove that configuration using a breaking-change commit to bumpyour project's major version tov1.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 like1.x.x.

If used together with a manual version, the command also fails.

# This failsczbump0.1.0--major-version-zero

--gpg-sign

Creates gpg signed tags.

czbump--gpg-sign

Note

By default, Commitizen uses lightweight tags.

--template

Provides your own changelog jinja template.Seethe template customization section

--extra

Provides your own changelog extra variables by using theextras settings or the--extra/-e parameter.

czbump--changelog--extrakey=value-eshort="quoted value"

Seethe template customization section.

--build-metadata

Specifies additional metadata in the version string.

# creates a version like `1.1.2+yourmetadata`.czbump--build-metadatayourmetadata

Example usage

  • 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:

  • Version1.2.3+a, and1.2.3+b are 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.

Warning

This parameter is not compatible with--local-version as it uses the same part of the version string.

--get-next

Similar to--dry-run but only outputs the next version.

# outputs 1.0.1 if the current version is 1.0.0 and the increment is PATCHczbump--get-next

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 ofcz bump --dry-run:

bump: version 3.28.0 → 3.29.0tag to create: v3.29.0increment detected: MINOR

The following is the output ofcz bump --get-next:

3.29.0

Warning

The--get-next flag will raise aNoneIncrementExit if the found commits are not eligible for a version bump.

For information on how to suppress this exit, seeIgnoring Exit Codes.

--allow-no-commit

Allow the project version to be bumped even when there's no eligible version.

Example usage:

# Force to bump a minor versionczbump--incrementMINOR--allow-no-commit# bump version to 2.0.0 even when there's no breaking changes or even no commitsczbump--allow-no-commit2.0.0

Default increment

The increment is overridden toPATCH if there is no increment detected or specified.

In other words,cz bump --allow-no-commit allows you to bump the version to the next patch version even when there is no eligible commit.

# will bump to `1.0.1` if the current version is `1.0.0`.czbump--allow-no-commit# bump version to 2.0.0 even when there's no breaking changes or even no commitsczbump--allow-no-commit2.0.0

--tag-format

tag_format and [version_scheme][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 incz changelog.
  • If--incremental: Using the latest version found in the changelog, scan existing Git tags with 89\% similarity match.
  • --rev-range is converted to Git tag names withtag_format before searching Git history.
  • If thescmversion_provider is used, it uses different regexes to find the previous version tags:
  • Iftag_format is set to$version (default):VersionProtocol.parser (allowsv prefix)
  • Iftag_format is 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.

czbump--tag-format="v$version"
czbump--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:

VariableDescription
$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

[8]ページ先頭

©2009-2025 Movatter.jp