Skip to content

Commit

Permalink
Bump version: 1.4.0 → 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
goller committed Apr 14, 2015
1 parent 3050080 commit 86b8113
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .bumpversion.cfg
@@ -1,5 +1,6 @@
[bumpversion]
current_version = 1.4.0
current_version = 1.5.0
files = setup.py src/hashring/__init__.py
commit = True
tag = True

2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -24,7 +24,7 @@ def read(*names, **kwargs):

setup(
name="hashring",
version="1.4.0",
version="1.5.0",
license="BSD",
description="Implements consistent hashing in Python (using md5 as hashing function).",
long_description="%s\n%s" % (read("README.rst"), re.sub(":obj:`~?(.*?)`", r"``\1``", read("CHANGELOG.rst"))),
Expand Down
2 changes: 1 addition & 1 deletion src/hashring/__init__.py
@@ -1,4 +1,4 @@
__version__ = "1.4.0"
__version__ = "1.5.0"
from .hashring import HashRing

__all__ = ['HashRing']

0 comments on commit 86b8113

Please sign in to comment.