{"id":13493785,"url":"https://github.com/c4urself/bump2version","last_synced_at":"2025-05-13T18:09:19.370Z","repository":{"id":37486268,"uuid":"86366332","full_name":"c4urself/bump2version","owner":"c4urself","description":"Version-bump your software with a single command","archived":false,"fork":false,"pushed_at":"2025-02-20T09:07:16.000Z","size":656,"stargazers_count":1087,"open_issues_count":112,"forks_count":130,"subscribers_count":12,"default_branch":"master","last_synced_at":"2025-04-25T15:48:37.676Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://pypi.python.org/pypi/bump2version","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/c4urself.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.rst","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-03-27T17:48:58.000Z","updated_at":"2025-04-23T23:20:59.000Z","dependencies_parsed_at":"2025-02-27T14:48:55.086Z","dependency_job_id":"d92800df-f5c7-46ea-a4a2-ad368a987ed6","html_url":"https://github.com/c4urself/bump2version","commit_stats":{"total_commits":477,"total_committers":54,"mean_commits":8.833333333333334,"dds":0.5450733752620545,"last_synced_commit":"6b99254b1c5c823d054bc0ae1ebccfa070380fce"},"previous_names":[],"tags_count":32,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/c4urself%2Fbump2version","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/c4urself%2Fbump2version/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/c4urself%2Fbump2version/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/c4urself%2Fbump2version/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/c4urself","download_url":"https://codeload.github.com/c4urself/bump2version/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254000850,"owners_count":21997441,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-07-31T19:01:18.777Z","updated_at":"2025-05-13T18:09:19.345Z","avatar_url":"https://github.com/c4urself.png","language":"Python","funding_links":[],"categories":["Development","Python","Software Engineering","others"],"sub_categories":["Time Series","Curated Python packages"],"readme":"# bump2version\n\n[![image](https://img.shields.io/pypi/v/bump2version.svg)](https://pypi.org/project/bump2version/)\n[![image](https://img.shields.io/pypi/l/bump2version.svg)](https://pypi.org/project/bump2version/)\n[![image](https://img.shields.io/pypi/pyversions/bump2version.svg)](https://pypi.org/project/bump2version/)\n[![GitHub Actions](https://github.com/c4urself/bump2version/workflows/CI/badge.svg)](https://github.com/c4urself/bump2version/actions)\n\n\u003e ⚠️ **Warning**\n\u003e\n\u003e `bump2version` is **no longer maintained**.\n\u003e\n\u003e You should **switch to [`bump-my-version`](https://github.com/callowayproject/bump-my-version)**.\n\n## Overview\n\nVersion-bump your software with a single command!\n\nA small command line tool to simplify releasing software by updating all\nversion strings in your source code by the correct increment. Also creates\ncommits and tags:\n\n* version formats are highly configurable\n* works without any VCS, but happily reads tag information from and writes\n  commits and tags to Git and Mercurial if available\n* just handles text files, so it's not specific to any programming language\n* supports Python 3 and PyPy3\n\nIf you want to use Python 2, use `pip\u003e=9` and you'll get the last supported version,\nor pin `bump2version\u003c1`.\n\n## Alternatives\n\nIf bump2version does not fully suit your needs, you could take a look\nat other tools doing similar or related tasks:\n[ALTERNATIVES.md](https://github.com/c4urself/bump2version/blob/master/RELATED.md).\n\n## Installation\n\nYou can download and install the latest version of this software from the Python package index (PyPI) as follows:\n\n    pip install --upgrade bump2version\n\n**NOTE: `pip install bumpversion` now installs the latest bump2version!**\n\n## Changelog\n\nPlease find the changelog here: [CHANGELOG.md](CHANGELOG.md)\n\n## Usage\n\nNOTE: Throughout this document you can use `bumpversion` or `bump2version` interchangeably.\n\nThere are two modes of operation: On the command line for single-file operation\nand using a configuration file (`.bumpversion.cfg`) for more complex multi-file operations.\n\n    bump2version [options] part [file]\n\n#### `part`\n  _**required**_\u003cbr /\u003e\n\n  The part of the version to increase, e.g. `minor`.\n\n  Valid values include those given in the `--serialize` / `--parse` option.\n\n  Example bumping 0.5.1 to 0.6.0:\n\n     bump2version --current-version 0.5.1 minor src/VERSION\n\n#### `file`\n  _**[optional]**_\u003cbr /\u003e\n  **default**: none\n\n  The file that will be modified.\n\n  This file is added to the list of files specified in `[bumpversion:file:…]`\n  sections from the configuration file. If you want to rewrite only files\n  specified on the command line, use `--no-configured-files`.\n\n  Example bumping 1.1.9 to 2.0.0:\n\n     bump2version --current-version 1.1.9 major setup.py\n\n## Configuration file\n\nAll options can optionally be specified in a config file called\n`.bumpversion.cfg` so that once you know how `bump2version` needs to be\nconfigured for one particular software package, you can run it without\nspecifying options later. You should add that file to VCS so others can also\nbump versions.\n\nOptions on the command line take precedence over those from the config file,\nwhich take precedence over those derived from the environment and then from the\ndefaults.\n\nExample `.bumpversion.cfg`:\n\n```ini\n[bumpversion]\ncurrent_version = 0.2.9\ncommit = True\ntag = True\n\n[bumpversion:file:setup.py]\n```\n\nIf no `.bumpversion.cfg` exists, `bump2version` will also look into\n`setup.cfg` for configuration.\n\n### Configuration file -- Global configuration\n\nGeneral configuration is grouped in a `[bumpversion]` section.\n\n#### `current_version`\n  _**required**_\u003cbr /\u003e\n  **default**: none\n\n  The current version of the software package before bumping.\n\n  Also available as `--current-version` (e.g. `bump2version --current-version 0.5.1 patch setup.py`)\n\n#### `new_version`\n  _**[optional]**_\u003cbr /\u003e\n  **default**: none\n\n  The version of the software package after the increment. If not given will be\n  automatically determined.\n\n  Also available as `--new-version` (e.g. `to go from 0.5.1 directly to\n  0.6.1`: `bump2version --current-version 0.5.1 --new-version 0.6.1 patch\n  setup.py`).\n\n#### `tag = (True | False)`\n  _**[optional]**_\u003cbr /\u003e\n  **default**: False (Don't create a tag)\n\n  Whether to create a tag, that is the new version, prefixed with the character\n  \"`v`\". If you are using git, don't forget to `git-push` with the\n  `--tags` flag.\n\n  Also available on the command line as `(--tag | --no-tag)`.\n\n#### `sign_tags = (True | False)`\n  _**[optional]**_\u003cbr /\u003e\n  **default**: False (Don't sign tags)\n\n  Whether to sign tags.\n\n  Also available on the command line as `(--sign-tags | --no-sign-tags)`.\n\n#### `tag_name =`\n  _**[optional]**_\u003cbr /\u003e\n  **default:** `v{new_version}`\n\n  The name of the tag that will be created. Only valid when using `--tag` / `tag = True`.\n\n  This is templated using the [Python Format String Syntax](https://docs.python.org/3/library/string.html#format-string-syntax).\n  Available in the template context are `current_version` and `new_version`\n  as well as `current_[part]` and `new_[part]` (e.g. '`current_major`'\n  or '`new_patch`').\n  In addition, all environment variables are exposed, prefixed with `$`.\n  You can also use the variables `now` or `utcnow` to get a current timestamp. Both accept\n  datetime formatting (when used like as in `{now:%d.%m.%Y}`).\n\n  Also available as command-line flag `tag-name`.  Example usage:\n  `bump2version --tag-name 'release-{new_version}' patch`\n\n#### `tag_message =`\n  _**[optional]**_\u003cbr /\u003e\n  **default:** `Bump version: {current_version} → {new_version}`\n\n  The tag message to use when creating a tag. Only valid when using `--tag` / `tag = True`.\n\n  This is templated using the [Python Format String Syntax](https://docs.python.org/3/library/string.html#format-string-syntax).\n  Available in the template context are `current_version` and `new_version`\n  as well as `current_[part]` and `new_[part]` (e.g. '`current_major`'\n  or '`new_patch`').\n  In addition, all environment variables are exposed, prefixed with `$`.\n  You can also use the variables `now` or `utcnow` to get a current timestamp. Both accept\n  datetime formatting (when used like as in `{now:%d.%m.%Y}`).\n\n  Also available as command-line flag `--tag-message`.  Example usage:\n  `bump2version --tag-message 'Release {new_version}' patch`\n\n  `bump2version` creates an `annotated` tag in Git by default. To disable this and create a `lightweight` tag, you must explicitly set an empty `tag_message`:\n\n  * either in the configuration file: `tag_message =`\n  * or in the command-line: `bump2version --tag-message ''`\n\n  You can read more about Git tagging [here](https://git-scm.com/book/en/v2/Git-Basics-Tagging).\n\n#### `commit = (True | False)`\n  _**[optional]**_\u003cbr /\u003e\n  **default:** False (Don't create a commit)\n\n  Whether to create a commit using git or Mercurial.\n\n  Also available as `(--commit | --no-commit)`.\n\n  In many projects it is common to have a pre-commit hook that runs prior to a\n  commit and in case of failure aborts the commit. For some use cases it might\n  be desired that when bumping a version and having `commit = True`, the\n  pre-commit hook should perform slightly different actions than in regular\n  commits. For example run an extended set of checks only for actual releases of\n  the software. To allow the pre-commit hooks to distinguish a bumpversion\n  commit, the `BUMPVERSION_CURRENT_VERSION` and `BUMPVERSION_NEW_VERSION`\n  environment variables are set when executing the commit command.\n\n#### `message =`\n  _**[optional]**_\u003cbr /\u003e\n  **default:** `Bump version: {current_version} → {new_version}`\n\n  The commit message to use when creating a commit. Only valid when using `--commit` / `commit = True`.\n\n  This is templated using the [Python Format String Syntax](https://docs.python.org/3/library/string.html#format-string-syntax).\n  Available in the template context are `current_version` and `new_version`\n  as well as `current_[part]` and `new_[part]` (e.g. '`current_major`'\n  or '`new_patch`').\n  In addition, all environment variables are exposed, prefixed with `$`.\n  You can also use the variables `now` or `utcnow` to get a current timestamp. Both accept\n  datetime formatting (when used like as in `{now:%d.%m.%Y}`).\n\n  Also available as command-line flag `--message`.  Example usage:\n  `bump2version --message '[{now:%Y-%m-%d}] Jenkins Build {$BUILD_NUMBER}: {new_version}' patch`)\n\n#### `commit_args =`\n  _**[optional]**_\u003cbr /\u003e\n  **default:** empty\n\n  Extra arguments to pass to commit command. Only valid when using `--commit` /\n  `commit = True`.\n\n  This is for example useful to add `-s` to generate `Signed-off-by:` line in\n  the commit message.\n\n  Multiple arguments can be specified on separate lines.\n\n  Also available as command-line flag `--commit-args`, in which case only one\n  argument can be specified.\n\n\n### Configuration file -- Part specific configuration\n\nA version string consists of one or more parts, e.g. the version `1.0.2`\nhas three parts, separated by a dot (`.`) character. In the default\nconfiguration these parts are named `major`, `minor`, `patch`, however you can\ncustomize that using the `parse`/`serialize` option.\n\nBy default all parts are considered numeric, that is their initial value is `0`\nand they are increased as integers. Also, the value `0` is considered to be\noptional if it's not needed for serialization, i.e. the version `1.4.0` is\nequal to `1.4` if `{major}.{minor}` is given as a `serialize` value.\n\nFor advanced versioning schemes, non-numeric parts may be desirable (e.g. to\nidentify [alpha or beta versions](http://en.wikipedia.org/wiki/Software_release_life_cycle#Stages_of_development)\nto indicate the stage of development, the flavor of the software package or\na release name). To do so, you can use a `[bumpversion:part:…]` section\ncontaining the part's name (e.g. a part named `release_name` is configured in\na section called `[bumpversion:part:release_name]`.\n\nThe following options are valid inside a part configuration:\n\n#### `values =`\n  **default**: numeric (i.e. `0`, `1`, `2`, …)\n\n  Explicit list of all values that will be iterated when bumping that specific\n  part.\n\n  Example:\n\n```ini\n[bumpversion:part:release_name]\nvalues =\n  witty-warthog\n  ridiculous-rat\n  marvelous-mantis\n```\n\n#### `optional_value =`\n  **default**: The first entry in `values =`.\n\n  If the value of the part matches this value it is considered optional, i.e.\n  its representation in a `--serialize` possibility is not required.\n\n  Example:\n\n```ini\n[bumpversion]\ncurrent_version = 1.alpha\nparse = (?P\u003cnum\u003e\\d+)(\\.(?P\u003crelease\u003e.*))?\nserialize =\n  {num}.{release}\n  {num}\n\n[bumpversion:part:release]\noptional_value = gamma\nvalues =\n  alpha\n  beta\n  gamma\n```\n\n  Here, `bump2version release` would bump `1.alpha` to `1.beta`. Executing\n  `bump2version release` again would bump `1.beta` to `1`, because\n  `release` being `gamma` is configured optional.\n\n  You should consider the version of `1` to technically be `1.gamma`\n  with the `.gamma` part not being serialized since it is optional.\n  The `{num}` entry in the `serialize` list allows the release part to be\n  hidden. If you only had `{num}.{release}`, an optional release will always\n  be serialized.\n\n  Attempting to bump the release when it is the value of\n  `gamma` will cause a `ValueError` as it will think you are trying to\n  exceed the `values` list of the release part.\n\n#### `first_value =`\n  **default**: The first entry in `values =`.\n\n  When the part is reset, the value will be set to the value specified here.\n\n  Example:\n\n```ini\n[bumpversion]\ncurrent_version = 1.alpha1\nparse = (?P\u003cnum\u003e\\d+)(\\.(?P\u003crelease\u003e.*)(?P\u003cbuild\u003e\\d+))?\nserialize =\n  {num}.{release}{build}\n\n[bumpversion:part:release]\nvalues =\n  alpha\n  beta\n  gamma\n\n[bumpversion:part:build]\nfirst_value = 1\n```\n\n  Here, `bump2version release` would bump `1.alpha1` to `1.beta1`.\n\n  Without the `first_value = 1` of the build part configured,\n  `bump2version release` would bump `1.alpha1` to `1.beta0`, starting\n  the build at `0`.\n\n\n#### `independent =`\n  **default**: `False`\n\n  When this value is set to `True`, the part is not reset when other parts are incremented. Its incrementation is\n  independent of the other parts. It is in particular useful when you have a build number in your version that is\n  incremented independently of the actual version.\n\n  Example:\n\n```ini\n[bumpversion]\ncurrent_version: 2.1.6-5123\nparse = (?P\u003cmajor\u003e\\d+)\\.(?P\u003cminor\u003e\\d+)\\.(?P\u003cpatch\u003e\\d+)\\-(?P\u003cbuild\u003e\\d+)\nserialize = {major}.{minor}.{patch}-{build}\n\n[bumpversion:file:VERSION.txt]\n\n[bumpversion:part:build]\nindependent = True\n```\n\n  Here, `bump2version build` would bump `2.1.6-5123` to `2.1.6-5124`. Executing`bump2version major`\n  would bump `2.1.6-5124` to `3.0.0-5124` without resetting the build number.\n  \n\n### Configuration file -- File specific configuration\n\nThis configuration is in the section: `[bumpversion:file:…]` or `[bumpversion:glob:…]`\n\nBoth, `file:` and `glob:` are configured the same. Their difference is that\nfile will match file names directly like `requirements.txt`. While glob also\nmatches multiple files via wildcards like `**/pom.xml`.\n\nNote: The configuration file format requires each section header to be\nunique. If you want to process a certain file multiple times,\nyou may append a description between parens to the `file` keyword:\n`[bumpversion:file (special one):…]`.\n\n#### `parse =`\n  **default:** `(?P\u003cmajor\u003e\\d+)\\.(?P\u003cminor\u003e\\d+)\\.(?P\u003cpatch\u003e\\d+)`\n\n  Regular expression (using [Python regular expression syntax](https://docs.python.org/3/library/re.html#regular-expression-syntax)) on\n  how to find and parse the version string.\n\n  Is required to parse all strings produced by `serialize =`. Named matching\n  groups (\"`(?P\u003cname\u003e...)`\") provide values to as the `part` argument.\n\n  Also available as `--parse`\n\n#### `serialize =`\n  **default:** `{major}.{minor}.{patch}`\n\n  Template specifying how to serialize the version parts back to a version\n  string.\n\n  This is templated using the [Python Format String Syntax](https://docs.python.org/3/library/string.html#format-string-syntax).\n  Available in the template context are parsed values of the named groups\n  specified in `parse =` as well as all environment variables (prefixed with\n  `$`).\n\n  Can be specified multiple times, bumpversion will try the serialization\n  formats beginning with the first and choose the last one where all values can\n  be represented like this:\n\n```ini\nserialize =\n  {major}.{minor}\n  {major}\n```\n\n  Given the example above, the new version `1.9` will be serialized as\n  `1.9`, but the version `2.0` will be serialized as `2`.\n\n  Also available as `--serialize`. Multiple values on the command line are\n  given like `--serialize {major}.{minor} --serialize {major}`\n\n#### `search =`\n  **default:** `{current_version}`\n\n  Template string how to search for the string to be replaced in the file.\n  Useful if the remotest possibility exists that the current version number\n  might be present multiple times in the file and you mean to only bump one of the\n  occurrences. Can be multiple lines, templated using [Python Format String Syntax](https://docs.python.org/3/library/string.html#format-string-syntax)\n\n#### `replace =`\n  **default:** `{new_version}`\n\n  Template to create the string that will replace the current version number in\n  the file.\n\n  Given this `requirements.txt`:\n\n    Django\u003e=1.5.6,\u003c1.6\n    MyProject==1.5.6\n\n  using this `.bumpversion.cfg` will ensure only the line containing\n  `MyProject` will be changed:\n\n```ini\n[bumpversion]\ncurrent_version = 1.5.6\n\n[bumpversion:file:requirements.txt]\nsearch = MyProject=={current_version}\nreplace = MyProject=={new_version}\n```\n\n  Can be multiple lines, templated using [Python Format String Syntax](https://docs.python.org/3/library/string.html#format-string-syntax).\n\n  **NOTE**: (*Updated in v1.0.1*) It is important to point out that if a\n  custom search pattern is configured, then `bump2version` will only perform\n  a change if it finds an exact match and will not fallback to the default\n  pattern. This is to prevent accidentally changing strings that match the\n  default pattern when there is a typo in the custom search pattern.\n\n  For example, if the string to be replaced includes literal quotes,\n  the search and replace patterns must include them too to match. Given the\n  file `version.sh`:\n\n      MY_VERSION=\"1.2.3\"\n\n  Then the following search and replace patterns (including quotes) would be\n  required:\n\n```ini\n[bumpversion:file:version.sh]\nsearch = MY_VERSION=\"{current_version}\"\nreplace = MY_VERSION=\"{new_version}\"\n```\n\n## Command-line Options\n\nMost of the configuration values above can also be given as an option on the command-line.\nAdditionally, the following options are available:\n\n`--dry-run, -n`\n  Don't touch any files, just pretend. Best used with `--verbose`.\n\n`--allow-dirty`\n  Normally, bumpversion will abort if the working directory is dirty to protect\n  yourself from releasing unversioned files and/or overwriting unsaved changes.\n  Use this option to override this check.\n\n`--no-configured-files`\n  Will not update/check files specified in the .bumpversion.cfg.\n  Similar to dry-run, but will also avoid checking the files.\n  Also useful when you want to update just one file with e.g.,\n    `bump2version --no-configured-files major my-file.txt`\n\n`--verbose`\n  Print useful information to stderr\n\n`--list`\n  List machine readable information to stdout for consumption by other\n  programs.\n\n  Example output:\n\n    current_version=0.0.18\n    new_version=0.0.19\n\n`-h, --help`\n  Print help and exit\n\n## Using bumpversion in a script\n\nIf you need to use the version generated by bumpversion in a script you can make use of\nthe `--list` option, combined with `grep` and `sed`.\n\nSay for example that you are using git-flow to manage your project and want to automatically\ncreate a release. When you issue `git flow release start` you already need to know the\nnew version, before applying the change.\n\nThe standard way to get it in a bash script is\n\n    bump2version --dry-run --list \u003cpart\u003e | grep \u003cfield name\u003e | sed -r s,\"^.*=\",,\n\nwhere `part` is as usual the part of the version number you are updating. You need to specify\n`--dry-run` to avoid bumpversion actually bumping the version number.\n\nFor example, if you are updating the minor number and looking for the new version number this becomes\n\n    bump2version --dry-run --list minor | grep new_version | sed -r s,\"^.*=\",,\n\n## Using bumpversion to maintain a go.mod file within a Go project\n\nIn a module-aware Go project, when you create a major version of your module beyond v1, your module name will need\nto include the major version # (e.g. `github.com/myorg/myproject/v2`).\n\nYou can use bump2version to maintain the major version # within the go.mod file by using the `parse` and `serialize`\noptions, as in this example:\n\n- Example `.bumpversion.cfg` file:\n\n```\n    [bumpversion]\n    current_version = 2.0.0\n    commit = True\n\n    [bumpversion:file:go.mod]\n    parse = (?P\u003cmajor\u003e\\d+)\n    serialize = {major}\n    search = module github.com/myorg/myproject/v{current_version}\n    replace = module github.com/myorg/myproject/v{new_version}\n```\n\n- Example `go.mod` file:\n\n```\n    module github.com/myorg/myproject/v2\n\n    go 1.12\n\n    require (\n        ...\n    )\n```\n\nThen run this command to create version 3.0.0 of your project:\n\n```\n    bump2version --new-version 3.0.0 major\n```\nYour `go.mod` file now contains this module directive:\n\n```\n    module github.com/myorg/myproject/v3\n```\n\n## Development \u0026 Contributing\n\nThank you contributors! You can find a full list here: https://github.com/c4urself/bump2version/graphs/contributors\n\nSee also our [CONTRIBUTING.md](CONTRIBUTING.md)\n\nDevelopment of this happens on GitHub, patches including tests, documentation\nare very welcome, as well as bug reports! Also please open an issue if this\ntool does not support every aspect of bumping versions in your development\nworkflow, as it is intended to be very versatile.\n\n## License\n\nbump2version is licensed under the MIT License - see the [LICENSE.rst](LICENSE.rst) file for details\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fc4urself%2Fbump2version","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fc4urself%2Fbump2version","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fc4urself%2Fbump2version/lists"}