Skip to content

Commit

Permalink
Bump version: 0.5.0-dev → 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
peritus committed Jun 16, 2014
1 parent fec39c8 commit 8cb1232
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
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.0-dev
current_version = 0.5.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
{major}.{minor}.{patch}-{release}
Expand Down
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,8 @@ Changes

**unreleased**

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

__VERSION__ = '0.5.0-dev'
__VERSION__ = '0.5.0'

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 @@ -4,7 +4,7 @@

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

0 comments on commit 8cb1232

Please sign in to comment.