bumpversion


Namebumpversion JSON
Version 0.6.0 PyPI version JSON
download
home_pagehttps://github.com/peritus/bumpversion
SummaryVersion-bump your software with a single command!
upload_time2020-05-14 02:19:39
maintainer
docs_urlNone
authorFilip Noetzel
requires_python
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            **⚠️ Current status of this project**

* 🎬If you want to start **using bumpversion**, you're best advised to **install one of the maintained forks**, e.g. ➡ `@c4urself's bump2version <https://github.com/c4urself/bump2version/#installation>`_.
* 🔨If you want to **help maintain** bumpversion, there's an `ongoing discussion about merging the fork back to the original project as well as forming a group of maintainers <https://github.com/c4urself/bump2version/issues/86>`_ to ensure a long-term future for this project. Please contribute.

-----

===========
bumpversion
===========



A small command line tool to simplify releasing software by updating all
version strings in your source code by the correct increment. Also creates
commits and tags:

- version formats are highly configurable
- works without any VCS, but happily reads tag information from and writes
  commits and tags to Git and Mercurial if available
- just handles text files, so it's not specific to any programming language

.. image:: https://travis-ci.org/peritus/bumpversion.png?branch=master
  :target: https://travis-ci.org/peritus/bumpversion

.. image:: https://ci.appveyor.com/api/projects/status/bxq8185bpq9u3sjd/branch/master?svg=true
  :target: https://ci.appveyor.com/project/peritus/bumpversion

Screencast
==========

.. image:: https://dl.dropboxusercontent.com/u/8735936/Screen%20Shot%202013-04-12%20at%202.43.46%20PM.png
  :target: https://asciinema.org/a/3828

Installation
============

You can download and install the latest version of this software from the Python package index (PyPI) as follows::

    pip install --upgrade bumpversion

Usage
=====

There are two modes of operation: On the command line for single-file operation
and using a configuration file  for more complex multi-file
operations.

::

    bumpversion [options] part [file]


``part`` (required)
  The part of the version to increase, e.g. ``minor``.

  Valid values include those given in the ``--serialize`` / ``--parse`` option.

  Example `bumping 0.5.1 to 0.6.0`::

     bumpversion --current-version 0.5.1 minor src/VERSION

``[file]``
  **default: none** (optional)

  The file that will be modified.

  If not given, the list of ``[bumpversion:file:…]`` sections from the
  configuration file will be used. If no files are mentioned on the
  configuration file either, are no files will be modified.

  Example `bumping 1.1.9 to 2.0.0`::

     bumpversion --current-version 1.1.9 major setup.py

Configuration
+++++++++++++

All options can optionally be specified in a config file called
``.bumpversion.cfg`` so that once you know how ``bumpversion`` needs to be
configured for one particular software package, you can run it without
specifying options later. You should add that file to VCS so others can also
bump versions.

Options on the command line take precedence over those from the config file,
which take precedence over those derived from the environment and then from the
defaults.

Example ``.bumpversion.cfg``::

  [bumpversion]
  current_version = 0.2.9
  commit = True
  tag = True

  [bumpversion:file:setup.py]

If no ``.bumpversion.cfg`` exists, ``bumpversion`` will also look into
``setup.cfg`` for configuration.

Global configuration
--------------------

General configuration is grouped in a ``[bumpversion]`` section.

``current_version =``
  **no default value** (required)

  The current version of the software package before bumping.

  Also available as ``--current-version`` (e.g. ``bumpversion --current-version 0.5.1 patch setup.py``)

``new_version =``
  **no default value** (optional)

  The version of the software package after the increment. If not given will be
  automatically determined.

  Also available as ``--new-version`` (e.g. `to go from 0.5.1 directly to
  0.6.1`: ``bumpversion --current-version 0.5.1 --new-version 0.6.1 patch
  setup.py``).

``tag = (True | False)``
  **default:** False (`Don't create a tag`)

  Whether to create a tag, that is the new version, prefixed with the character
  "``v``". If you are using git, don't forget to ``git-push`` with the
  ``--tags`` flag.

  Also available on the command line as ``(--tag | --no-tag)``.

``tag_name =``
  **default:** ``v{new_version}``

  The name of the tag that will be created. Only valid when using ``--tag`` / ``tag = True``.

  This is templated using the `Python Format String Syntax
  <http://docs.python.org/2/library/string.html#format-string-syntax>`_.
  Available in the template context are ``current_version`` and ``new_version``
  as well as all environment variables (prefixed with ``$``). You can also use
  the variables ``now`` or ``utcnow`` to get a current timestamp. Both accept
  datetime formatting (when used like as in ``{now:%d.%m.%Y}``).

  Also available as ``--tag-name`` (e.g. ``bumpversion --message 'Jenkins Build
  {$BUILD_NUMBER}: {new_version}' patch``).

``commit = (True | False)``
  **default:** ``False`` (`Don't create a commit`)

  Whether to create a commit using git or Mercurial.

  Also available as ``(--commit | --no-commit)``.

``message =`` 
  **default:** ``Bump version: {current_version} → {new_version}``

  The commit message to use when creating a commit. Only valid when using ``--commit`` / ``commit = True``.

  This is templated using the `Python Format String Syntax
  <http://docs.python.org/2/library/string.html#format-string-syntax>`_.
  Available in the template context are ``current_version`` and ``new_version``
  as well as all environment variables (prefixed with ``$``). You can also use
  the variables ``now`` or ``utcnow`` to get a current timestamp. Both accept
  datetime formatting (when used like as in ``{now:%d.%m.%Y}``).

  Also available as ``--message`` (e.g.: ``bumpversion --message
  '[{now:%Y-%m-%d}] Jenkins Build {$BUILD_NUMBER}: {new_version}' patch``)


Part specific configuration
---------------------------

A version string consists of one or more parts, e.g. the version ``1.0.2``
has three parts, separated by a dot (``.``) character. In the default
configuration these parts are named `major`, `minor`, `patch`, however you can
customize that using the ``parse``/``serialize`` option.

By default all parts considered numeric, that is their initial value is ``0``
and they are increased as integers. Also, the value ``0`` is considered to be
optional if it's not needed for serialization, i.e. the version ``1.4.0`` is
equal to ``1.4`` if ``{major}.{minor}`` is given as a ``serialize`` value.

For advanced versioning schemes, non-numeric parts may be desirable (e.g. to
identify `alpha or beta versions
<http://en.wikipedia.org/wiki/Software_release_life_cycle#Stages_of_development>`_,
to indicate the stage of development, the flavor of the software package or
a release name). To do so, you can use a ``[bumpversion:part:…]`` section
containing the part's name (e.g. a part named ``release_name`` is configured in
a section called ``[bumpversion:part:release_name]``.

The following options are valid inside a part configuration:

``values =``
  **default**: numeric (i.e. ``0``, ``1``, ``2``, …)

  Explicit list of all values that will be iterated when bumping that specific
  part.

  Example::

    [bumpversion:part:release_name]
    values =
      witty-warthog
      ridiculous-rat
      marvelous-mantis

``optional_value =``
  **default**: The first entry in ``values =``.

  If the value of the part matches this value it is considered optional, i.e.
  it's representation in a ``--serialize`` possibility is not required.

  Example::

    [bumpversion]
    current_version = 1.alpha
    parse = (?P<num>\d+)\.(?P<release>.*)
    serialize =
      {num}.{release}
      {num}

    [bumpversion:part:release]
    optional_value = gamma
    values =
      alpha
      beta
      gamma

  Here, ``bumpversion release`` would bump ``1.alpha`` to ``1.beta``. Executing
  ``bumpversion release`` again would bump ``1.beta`` to ``1``, because
  `release` being ``gamma`` is configured optional.

``first_value =``
  **default**: The first entry in ``values =``.

  When the part is reset, the value will be set to the value specified here.

File specific configuration
---------------------------

``[bumpversion:file:…]``

``parse =``
  **default:** ``(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)``

  Regular expression (using `Python regular expression syntax
  <http://docs.python.org/2/library/re.html#regular-expression-syntax>`_) on
  how to find and parse the version string.

  Is required to parse all strings produced by ``serialize =``. Named matching
  groups ("``(?P<name>...)``") provide values to as the ``part`` argument.

  Also available as ``--parse``

``serialize =``
  **default:** ``{major}.{minor}.{patch}``

  Template specifying how to serialize the version parts back to a version
  string.

  This is templated using the `Python Format String Syntax
  <http://docs.python.org/2/library/string.html#format-string-syntax>`_.
  Available in the template context are parsed values of the named groups
  specified in ``parse =`` as well as all environment variables (prefixed with
  ``$``).

  Can be specified multiple times, bumpversion will try the serialization
  formats beginning with the first and choose the last one where all values can
  be represented like this::

    serialize =
      {major}.{minor}
      {major}

  Given the example above, the new version *1.9* it will be serialized as
  ``1.9``, but the version *2.0* will be serialized as ``2``.

  Also available as ``--serialize``. Multiple values on the command line are
  given like ``--serialize {major}.{minor} --serialize {major}``

``search =``
  **default:** ``{current_version}``

  Template string how to search for the string to be replaced in the file.
  Useful if the remotest possibility exists that the current version number
  might be multiple times in the file and you mean to only bump one of the
  occurences. Can be multiple lines, templated using `Python Format String Syntax
  <http://docs.python.org/2/library/string.html#format-string-syntax>`_.

``replace =``
  **default:** ``{new_version}``

  Template to create the string that will replace the current version number in
  the file.

  Given this ``requirements.txt``::

    Django>=1.5.6,<1.6
    MyProject==1.5.6

  using this ``.bumpversion.cfg`` will ensure only the line containing
  ``MyProject`` will be changed::

    [bumpversion]
    current_version = 1.5.6

    [bumpversion:file:requirements.txt]
    search = MyProject=={current_version}
    replace = MyProject=={new_version}

  Can be multiple lines, templated using `Python Format String Syntax
  <http://docs.python.org/2/library/string.html#format-string-syntax>`_.

Options
=======

Most of the configuration values above can also be given as an option.
Additionally, the following options are available:

``--dry-run, -n``
  Don't touch any files, just pretend. Best used with ``--verbose``.

``--allow-dirty``
  Normally, bumpversion will abort if the working directory is dirty to protect
  yourself from releasing unversioned files and/or overwriting unsaved changes.
  Use this option to override this check.

``--verbose``
  Print useful information to stderr

``--list``
  List machine readable information to stdout for consumption by other
  programs.

  Example output::

    current_version=0.0.18
    new_version=0.0.19

``-h, --help``
  Print help and exit

Using bumpversion in a script
=============================

If you need to use the version generated by bumpversion in a script you can make use of
the `--list` option, combined with `grep` and `sed`.

Say for example that you are using git-flow to manage your project and want to automatically
create a release. When you issue `git flow release start` you already need to know the
new version, before applying the change.

The standard way to get it in a bash script is

    bumpversion --dry-run --list <part> | grep <field name> | sed -r s,"^.*=",,

where <part> is as usual the part of the version number you are updating. You need to specify
`--dry-run` to avoid bumpversion actually bumping the version number.

For example, if you are updating the minor number and looking for the new version number this becomes

    bumpversion --dry-run --list minor | grep new_version | sed -r s,"^.*=",,

Development
===========

Development of this happens on GitHub, patches including tests, documentation
are very welcome, as well as bug reports! Also please open an issue if this
tool does not support every aspect of bumping versions in your development
workflow, as it is intended to be very versatile.

How to release bumpversion itself
+++++++++++++++++++++++++++++++++

Execute the following commands::

    git checkout master
    git pull
    tox
    bumpversion release
    python setup.py sdist bdist_wheel upload
    bumpversion --no-tag patch
    git push origin master --tags

License
=======

bumpversion is licensed under the MIT License - see the LICENSE.rst file for details

Changes
=======

**0.6.0**

- Deprecation: publish package that links to the newer bump2version for seamless
  upgrades (see: https://www.python.org/dev/peps/pep-0423/#id106)

**v0.5.3**

- Fix bug where ``--new-version`` value was not used when config was present
  (thanks @cscetbon @ecordell (`#60 <https://github.com/peritus/bumpversion/pull/60>`_)
- Preserve case of keys config file
  (thanks theskumar `#75 <https://github.com/peritus/bumpversion/pull/75>`_)
- Windows CRLF improvements (thanks @thebjorn)

**v0.5.1**

- Document file specific options ``search =`` and ``replace =`` (introduced in 0.5.0)
- Fix parsing individual labels from ``serialize =`` config even if there are
  characters after the last label (thanks @mskrajnowski `#56
  <https://github.com/peritus/bumpversion/pull/56>`_).
- Fix: Don't crash in git repositories that have tags that contain hyphens
  (`#51 <https://github.com/peritus/bumpversion/pull/51>`_) (`#52
  <https://github.com/peritus/bumpversion/pull/52>`_).
- Fix: Log actual content of the config file, not what ConfigParser prints
  after reading it.
- Fix: Support multiline values in ``search =``
- also load configuration from ``setup.cfg`` (thanks @t-8ch `#57
  <https://github.com/peritus/bumpversion/pull/57>`_).

**v0.5.0**

This is a major one, containing two larger features, that require some changes
in the configuration format. This release is fully backwards compatible to
*v0.4.1*, however deprecates two uses that will be removed in a future version.

- New feature: Part specific configuration 
- New feature: File specific configuration  
- New feature: parse option can now span multiple line (allows to comment complex
  regular expressions. See `re.VERBOSE in the Python documentation
  <https://docs.python.org/library/re.html#re.VERBOSE>`_ for details, `this
  testcase
  <https://github.com/peritus/bumpversion/blob/165e5d8bd308e9b7a1a6d17dba8aec9603f2d063/tests.py#L1202-L1211>`_
  as an example.)
- New feature: ``--allow-dirty`` (`#42 <https://github.com/peritus/bumpversion/pull/42>`_).
- Fix: Save the files in binary mode to avoid mutating newlines (thanks @jaraco `#45 <https://github.com/peritus/bumpversion/pull/45>`_). 
- License: bumpversion is now licensed under the MIT License (`#47 <https://github.com/peritus/bumpversion/issues/47>`_)

- Deprecate multiple files on the command line (use a configuration file  instead, or invoke ``bumpversion`` multiple times)
- Deprecate 'files =' configuration (use file specific configuration  instead)

**v0.4.1**

- Add --list option (`#39 <https://github.com/peritus/bumpversion/issues/39>`_)
- Use temporary files for handing over commit/tag messages to git/hg (`#36 <https://github.com/peritus/bumpversion/issues/36>`_)
- Fix: don't encode stdout as utf-8 on py3 (`#40 <https://github.com/peritus/bumpversion/issues/40>`_)
- Fix: logging of content of config file was wrong

**v0.4.0**

- Add --verbose option (`#21 <https://github.com/peritus/bumpversion/issues/21>`_ `#30 <https://github.com/peritus/bumpversion/issues/30>`_)
- Allow option --serialize multiple times

**v0.3.8**

- Fix: --parse/--serialize didn't work from cfg (`#34 <https://github.com/peritus/bumpversion/issues/34>`_)

**v0.3.7**

- Don't fail if git or hg is not installed (thanks @keimlink)
- "files" option is now optional (`#16 <https://github.com/peritus/bumpversion/issues/16>`_)
- Fix bug related to dirty work dir (`#28 <https://github.com/peritus/bumpversion/issues/28>`_)


**v0.3.6**

- Fix --tag default (thanks @keimlink)

**v0.3.5**

- add {now} and {utcnow} to context
- use correct file encoding writing to config file. NOTE: If you are using
  Python2 and want to use UTF-8 encoded characters in your config file, you
  need to update ConfigParser like using 'pip install -U configparser'
- leave current_version in config even if available from vcs tags (was
  confusing)
- print own version number in usage
- allow bumping parts that contain non-numerics
- various fixes regarding file encoding

**v0.3.4**

- bugfix: tag_name and message in .bumpversion.cfg didn't have an effect (`#9 <https://github.com/peritus/bumpversion/issues/9>`_)

**v0.3.3**

- add --tag-name option
- now works on Python 3.2, 3.3 and PyPy

**v0.3.2**

- bugfix: Read only tags from `git describe` that look like versions

**v0.3.1**

- bugfix: ``--help`` in git workdir raising AssertionError
- bugfix: fail earlier if one of files does not exist
- bugfix: ``commit = True`` / ``tag = True`` in .bumpversion.cfg had no effect

**v0.3.0**

- **BREAKING CHANGE** The ``--bump`` argument was removed, this is now the first
  positional argument.
  If you used ``bumpversion --bump major`` before, you can use
  ``bumpversion major`` now.
  If you used ``bumpversion`` without arguments before, you now
  need to specify the part (previous default was ``patch``) as in
  ``bumpversion patch``).

**v0.2.2**

- add --no-commit, --no-tag

**v0.2.1**

- If available, use git to learn about current version

**v0.2.0**

- Mercurial support

**v0.1.1**

- Only create a tag when it's requested (thanks @gvangool)

**v0.1.0**

- Initial public version




            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/peritus/bumpversion",
    "name": "bumpversion",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Filip Noetzel",
    "author_email": "filip+bumpversion@j03.de",
    "download_url": "https://files.pythonhosted.org/packages/34/f5/e95fcd8de146884cf5ecf30f227e13c3615584ccef8c8cca18140a27b664/bumpversion-0.6.0.tar.gz",
    "platform": "",
    "description": "**\u26a0\ufe0f Current status of this project**\n\n* \ud83c\udfacIf you want to start **using bumpversion**, you're best advised to **install one of the maintained forks**, e.g. \u27a1 `@c4urself's bump2version <https://github.com/c4urself/bump2version/#installation>`_.\n* \ud83d\udd28If you want to **help maintain** bumpversion, there's an `ongoing discussion about merging the fork back to the original project as well as forming a group of maintainers <https://github.com/c4urself/bump2version/issues/86>`_ to ensure a long-term future for this project. Please contribute.\n\n-----\n\n===========\nbumpversion\n===========\n\n\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\n.. image:: https://travis-ci.org/peritus/bumpversion.png?branch=master\n  :target: https://travis-ci.org/peritus/bumpversion\n\n.. image:: https://ci.appveyor.com/api/projects/status/bxq8185bpq9u3sjd/branch/master?svg=true\n  :target: https://ci.appveyor.com/project/peritus/bumpversion\n\nScreencast\n==========\n\n.. image:: https://dl.dropboxusercontent.com/u/8735936/Screen%20Shot%202013-04-12%20at%202.43.46%20PM.png\n  :target: https://asciinema.org/a/3828\n\nInstallation\n============\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 bumpversion\n\nUsage\n=====\n\nThere are two modes of operation: On the command line for single-file operation\nand using a configuration file  for more complex multi-file\noperations.\n\n::\n\n    bumpversion [options] part [file]\n\n\n``part`` (required)\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     bumpversion --current-version 0.5.1 minor src/VERSION\n\n``[file]``\n  **default: none** (optional)\n\n  The file that will be modified.\n\n  If not given, the list of ``[bumpversion:file:\u2026]`` sections from the\n  configuration file will be used. If no files are mentioned on the\n  configuration file either, are no files will be modified.\n\n  Example `bumping 1.1.9 to 2.0.0`::\n\n     bumpversion --current-version 1.1.9 major setup.py\n\nConfiguration\n+++++++++++++\n\nAll options can optionally be specified in a config file called\n``.bumpversion.cfg`` so that once you know how ``bumpversion`` 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  [bumpversion]\n  current_version = 0.2.9\n  commit = True\n  tag = True\n\n  [bumpversion:file:setup.py]\n\nIf no ``.bumpversion.cfg`` exists, ``bumpversion`` will also look into\n``setup.cfg`` for configuration.\n\nGlobal configuration\n--------------------\n\nGeneral configuration is grouped in a ``[bumpversion]`` section.\n\n``current_version =``\n  **no default value** (required)\n\n  The current version of the software package before bumping.\n\n  Also available as ``--current-version`` (e.g. ``bumpversion --current-version 0.5.1 patch setup.py``)\n\n``new_version =``\n  **no default value** (optional)\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`: ``bumpversion --current-version 0.5.1 --new-version 0.6.1 patch\n  setup.py``).\n\n``tag = (True | False)``\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``tag_name =``\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\n  <http://docs.python.org/2/library/string.html#format-string-syntax>`_.\n  Available in the template context are ``current_version`` and ``new_version``\n  as well as all environment variables (prefixed with ``$``). You can also use\n  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 ``--tag-name`` (e.g. ``bumpversion --message 'Jenkins Build\n  {$BUILD_NUMBER}: {new_version}' patch``).\n\n``commit = (True | False)``\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``message =`` \n  **default:** ``Bump version: {current_version} \u2192 {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\n  <http://docs.python.org/2/library/string.html#format-string-syntax>`_.\n  Available in the template context are ``current_version`` and ``new_version``\n  as well as all environment variables (prefixed with ``$``). You can also use\n  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 ``--message`` (e.g.: ``bumpversion --message\n  '[{now:%Y-%m-%d}] Jenkins Build {$BUILD_NUMBER}: {new_version}' patch``)\n\n\nPart specific configuration\n---------------------------\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 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\n<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:\u2026]`` 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``, \u2026)\n\n  Explicit list of all values that will be iterated when bumping that specific\n  part.\n\n  Example::\n\n    [bumpversion:part:release_name]\n    values =\n      witty-warthog\n      ridiculous-rat\n      marvelous-mantis\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  it's representation in a ``--serialize`` possibility is not required.\n\n  Example::\n\n    [bumpversion]\n    current_version = 1.alpha\n    parse = (?P<num>\\d+)\\.(?P<release>.*)\n    serialize =\n      {num}.{release}\n      {num}\n\n    [bumpversion:part:release]\n    optional_value = gamma\n    values =\n      alpha\n      beta\n      gamma\n\n  Here, ``bumpversion release`` would bump ``1.alpha`` to ``1.beta``. Executing\n  ``bumpversion release`` again would bump ``1.beta`` to ``1``, because\n  `release` being ``gamma`` is configured optional.\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\nFile specific configuration\n---------------------------\n\n``[bumpversion:file:\u2026]``\n\n``parse =``\n  **default:** ``(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)``\n\n  Regular expression (using `Python regular expression syntax\n  <http://docs.python.org/2/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<name>...)``\") 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\n  <http://docs.python.org/2/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    serialize =\n      {major}.{minor}\n      {major}\n\n  Given the example above, the new version *1.9* it 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 multiple times in the file and you mean to only bump one of the\n  occurences. Can be multiple lines, templated using `Python Format String Syntax\n  <http://docs.python.org/2/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>=1.5.6,<1.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    [bumpversion]\n    current_version = 1.5.6\n\n    [bumpversion:file:requirements.txt]\n    search = MyProject=={current_version}\n    replace = MyProject=={new_version}\n\n  Can be multiple lines, templated using `Python Format String Syntax\n  <http://docs.python.org/2/library/string.html#format-string-syntax>`_.\n\nOptions\n=======\n\nMost of the configuration values above can also be given as an option.\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``--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\nUsing bumpversion in a script\n=============================\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    bumpversion --dry-run --list <part> | grep <field name> | 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    bumpversion --dry-run --list minor | grep new_version | sed -r s,\"^.*=\",,\n\nDevelopment\n===========\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\nHow to release bumpversion itself\n+++++++++++++++++++++++++++++++++\n\nExecute the following commands::\n\n    git checkout master\n    git pull\n    tox\n    bumpversion release\n    python setup.py sdist bdist_wheel upload\n    bumpversion --no-tag patch\n    git push origin master --tags\n\nLicense\n=======\n\nbumpversion is licensed under the MIT License - see the LICENSE.rst file for details\n\nChanges\n=======\n\n**0.6.0**\n\n- Deprecation: publish package that links to the newer bump2version for seamless\n  upgrades (see: https://www.python.org/dev/peps/pep-0423/#id106)\n\n**v0.5.3**\n\n- Fix bug where ``--new-version`` value was not used when config was present\n  (thanks @cscetbon @ecordell (`#60 <https://github.com/peritus/bumpversion/pull/60>`_)\n- Preserve case of keys config file\n  (thanks theskumar `#75 <https://github.com/peritus/bumpversion/pull/75>`_)\n- Windows CRLF improvements (thanks @thebjorn)\n\n**v0.5.1**\n\n- Document file specific options ``search =`` and ``replace =`` (introduced in 0.5.0)\n- Fix parsing individual labels from ``serialize =`` config even if there are\n  characters after the last label (thanks @mskrajnowski `#56\n  <https://github.com/peritus/bumpversion/pull/56>`_).\n- Fix: Don't crash in git repositories that have tags that contain hyphens\n  (`#51 <https://github.com/peritus/bumpversion/pull/51>`_) (`#52\n  <https://github.com/peritus/bumpversion/pull/52>`_).\n- Fix: Log actual content of the config file, not what ConfigParser prints\n  after reading it.\n- Fix: Support multiline values in ``search =``\n- also load configuration from ``setup.cfg`` (thanks @t-8ch `#57\n  <https://github.com/peritus/bumpversion/pull/57>`_).\n\n**v0.5.0**\n\nThis is a major one, containing two larger features, that require some changes\nin the configuration format. This release is fully backwards compatible to\n*v0.4.1*, however deprecates two uses that will be removed in a future version.\n\n- New feature: Part specific configuration \n- New feature: File specific configuration  \n- New feature: parse option can now span multiple line (allows to comment complex\n  regular expressions. See `re.VERBOSE in the Python documentation\n  <https://docs.python.org/library/re.html#re.VERBOSE>`_ for details, `this\n  testcase\n  <https://github.com/peritus/bumpversion/blob/165e5d8bd308e9b7a1a6d17dba8aec9603f2d063/tests.py#L1202-L1211>`_\n  as an example.)\n- New feature: ``--allow-dirty`` (`#42 <https://github.com/peritus/bumpversion/pull/42>`_).\n- Fix: Save the files in binary mode to avoid mutating newlines (thanks @jaraco `#45 <https://github.com/peritus/bumpversion/pull/45>`_). \n- License: bumpversion is now licensed under the MIT License (`#47 <https://github.com/peritus/bumpversion/issues/47>`_)\n\n- Deprecate multiple files on the command line (use a configuration file  instead, or invoke ``bumpversion`` multiple times)\n- Deprecate 'files =' configuration (use file specific configuration  instead)\n\n**v0.4.1**\n\n- Add --list option (`#39 <https://github.com/peritus/bumpversion/issues/39>`_)\n- Use temporary files for handing over commit/tag messages to git/hg (`#36 <https://github.com/peritus/bumpversion/issues/36>`_)\n- Fix: don't encode stdout as utf-8 on py3 (`#40 <https://github.com/peritus/bumpversion/issues/40>`_)\n- Fix: logging of content of config file was wrong\n\n**v0.4.0**\n\n- Add --verbose option (`#21 <https://github.com/peritus/bumpversion/issues/21>`_ `#30 <https://github.com/peritus/bumpversion/issues/30>`_)\n- Allow option --serialize multiple times\n\n**v0.3.8**\n\n- Fix: --parse/--serialize didn't work from cfg (`#34 <https://github.com/peritus/bumpversion/issues/34>`_)\n\n**v0.3.7**\n\n- Don't fail if git or hg is not installed (thanks @keimlink)\n- \"files\" option is now optional (`#16 <https://github.com/peritus/bumpversion/issues/16>`_)\n- Fix bug related to dirty work dir (`#28 <https://github.com/peritus/bumpversion/issues/28>`_)\n\n\n**v0.3.6**\n\n- Fix --tag default (thanks @keimlink)\n\n**v0.3.5**\n\n- add {now} and {utcnow} to context\n- use correct file encoding writing to config file. NOTE: If you are using\n  Python2 and want to use UTF-8 encoded characters in your config file, you\n  need to update ConfigParser like using 'pip install -U configparser'\n- leave current_version in config even if available from vcs tags (was\n  confusing)\n- print own version number in usage\n- allow bumping parts that contain non-numerics\n- various fixes regarding file encoding\n\n**v0.3.4**\n\n- bugfix: tag_name and message in .bumpversion.cfg didn't have an effect (`#9 <https://github.com/peritus/bumpversion/issues/9>`_)\n\n**v0.3.3**\n\n- add --tag-name option\n- now works on Python 3.2, 3.3 and PyPy\n\n**v0.3.2**\n\n- bugfix: Read only tags from `git describe` that look like versions\n\n**v0.3.1**\n\n- bugfix: ``--help`` in git workdir raising AssertionError\n- bugfix: fail earlier if one of files does not exist\n- bugfix: ``commit = True`` / ``tag = True`` in .bumpversion.cfg had no effect\n\n**v0.3.0**\n\n- **BREAKING CHANGE** The ``--bump`` argument was removed, this is now the first\n  positional argument.\n  If you used ``bumpversion --bump major`` before, you can use\n  ``bumpversion major`` now.\n  If you used ``bumpversion`` without arguments before, you now\n  need to specify the part (previous default was ``patch``) as in\n  ``bumpversion patch``).\n\n**v0.2.2**\n\n- add --no-commit, --no-tag\n\n**v0.2.1**\n\n- If available, use git to learn about current version\n\n**v0.2.0**\n\n- Mercurial support\n\n**v0.1.1**\n\n- Only create a tag when it's requested (thanks @gvangool)\n\n**v0.1.0**\n\n- Initial public version\n\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Version-bump your software with a single command!",
    "version": "0.6.0",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "eb76a330e6c51a25226e3dd4256ebccb",
                "sha256": "4eb3267a38194d09f048a2179980bb4803701969bff2c85fa8f6d1ce050be15e"
            },
            "downloads": -1,
            "filename": "bumpversion-0.6.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "eb76a330e6c51a25226e3dd4256ebccb",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 8449,
            "upload_time": "2020-05-14T02:19:37",
            "upload_time_iso_8601": "2020-05-14T02:19:37.745911Z",
            "url": "https://files.pythonhosted.org/packages/4e/ff/93f0db7b3ca337e9f2a289980083e858775dfb3672b38052c6911b36ea66/bumpversion-0.6.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "1e4a981674612cdb6c7451c150dc5e41",
                "sha256": "4ba55e4080d373f80177b4dabef146c07ce73c7d1377aabf9d3c3ae1f94584a6"
            },
            "downloads": -1,
            "filename": "bumpversion-0.6.0.tar.gz",
            "has_sig": false,
            "md5_digest": "1e4a981674612cdb6c7451c150dc5e41",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 11897,
            "upload_time": "2020-05-14T02:19:39",
            "upload_time_iso_8601": "2020-05-14T02:19:39.534322Z",
            "url": "https://files.pythonhosted.org/packages/34/f5/e95fcd8de146884cf5ecf30f227e13c3615584ccef8c8cca18140a27b664/bumpversion-0.6.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2020-05-14 02:19:39",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "peritus",
    "github_project": "bumpversion",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "appveyor": true,
    "tox": true,
    "lcname": "bumpversion"
}
        
Elapsed time: 0.01181s