From 2dcad3f0344888659f82b26b7c8824778ea5a7bf Mon Sep 17 00:00:00 2001 From: Frankie Dintino Date: Mon, 28 Mar 2016 10:33:56 -0400 Subject: [PATCH 1/2] =?UTF-8?q?Bump=20version:=200.5.4-dev=20=E2=86=92=200?= =?UTF-8?q?.5.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.rst | 1 + bumpversion/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2da5e4d..37d2291 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 0.5.4-dev +current_version = 0.5.4 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? serialize = {major}.{minor}.{patch}-{release} diff --git a/README.rst b/README.rst index 3505557..46c30ff 100644 --- a/README.rst +++ b/README.rst @@ -384,6 +384,7 @@ Changes ======= **unreleased** +**v0.5.4** **v0.5.4-dev** **v0.5.3** diff --git a/bumpversion/__init__.py b/bumpversion/__init__.py index 757e4f7..b78c9ef 100644 --- a/bumpversion/__init__.py +++ b/bumpversion/__init__.py @@ -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__, diff --git a/setup.py b/setup.py index 349441f..051f585 100644 --- a/setup.py +++ b/setup.py @@ -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='filip+bumpversion@j03.de', From 155ae659a2981ab1035cbbe300fa14d6b3737f6f Mon Sep 17 00:00:00 2001 From: Frankie Dintino Date: Mon, 28 Mar 2016 11:36:43 -0400 Subject: [PATCH 2/2] Update changelog --- README.rst | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 46c30ff..aaf46a8 100644 --- a/README.rst +++ b/README.rst @@ -384,8 +384,24 @@ Changes ======= **unreleased** + **v0.5.4** -**v0.5.4-dev** + +- Add the license file to the sdist on PyPI + (thanks @benoit-monin `#85 `_) +- Include tests in PyPI package +- Fix: Add ``HOME`` to the list of environment variables passed by Tox + (thanks @igiordani `#90 `_) +- Allow package to be invoked as ``python -m bumpversion`` + (thanks @benoit-monin `#85 `_) +- Refactored classes that manipulate versions and added tests + (thanks @igiordani `#98 `_) +- Improved documentation formatting and added example for usage of ``--list`` + option (thanks @coredumperror `#112 + `_ and + @igiordani `#97 `_) +- Fix bug with short flags (thanks @inirudebwoy) + **v0.5.3**