Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to v0.5.4 #132

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = True
current_version = 0.5.4-dev
current_version = 0.5.4
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
{major}.{minor}.{patch}-{release}
Expand Down
19 changes: 18 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,24 @@ Changes
=======

**unreleased**
**v0.5.4-dev**

**v0.5.4**

- Add the license file to the sdist on PyPI
(thanks @benoit-monin `#85 <https://github.com/peritus/bumpversion/pull/85>`_)
- Include tests in PyPI package
- Fix: Add ``HOME`` to the list of environment variables passed by Tox
(thanks @igiordani `#90 <https://github.com/peritus/bumpversion/pull/90>`_)
- Allow package to be invoked as ``python -m bumpversion``
(thanks @benoit-monin `#85 <https://github.com/peritus/bumpversion/pull/85>`_)
- Refactored classes that manipulate versions and added tests
(thanks @igiordani `#98 <https://github.com/peritus/bumpversion/pull/98>`_)
- Improved documentation formatting and added example for usage of ``--list``
option (thanks @coredumperror `#112
<https://github.com/peritus/bumpversion/pull/112>`_ and
@igiordani `#97 <https://github.com/peritus/bumpversion/pull/97>`_)
- Fix bug with short flags (thanks @inirudebwoy)


**v0.5.3**

Expand Down
2 changes: 1 addition & 1 deletion bumpversion/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
if sys.version_info[0] == 2:
sys.stdout = codecs.getwriter('utf-8')(sys.stdout)

__VERSION__ = '0.5.4-dev'
__VERSION__ = '0.5.4'

DESCRIPTION = 'bumpversion: v{} (using Python v{})'.format(
__VERSION__,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name='bumpversion',
version='0.5.4-dev',
version='0.5.4',
url='https://github.com/peritus/bumpversion',
author='Filip Noetzel',
author_email='[email protected]',
Expand Down