Skip to content

Commit

Permalink
Bump version: 2.3.0 → 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Jan 15, 2016
1 parent 412d537 commit ead540f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.3.0
current_version = 3.0.0
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -25,7 +25,7 @@
year = '2013-2016'
author = 'Ionel Cristian Mărieș'
copyright = '{0}, {1}'.format(year, author)
version = release = '2.3.0'
version = release = '3.0.0'

pygments_style = 'trac'
templates_path = ['.']
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -23,7 +23,7 @@ def read(*names, **kwargs):

setup(
name='python-redis-lock',
version='2.3.0',
version='3.0.0',
license='BSD',
description='Lock context manager implemented via redis SETNX/BLPOP.',
long_description='%s\n%s' % (
Expand Down
2 changes: 1 addition & 1 deletion src/redis_lock/__init__.py
Expand Up @@ -6,7 +6,7 @@
from redis import StrictRedis
from redis.exceptions import NoScriptError

__version__ = "2.3.0"
__version__ = "3.0.0"

logger = getLogger(__name__)

Expand Down

0 comments on commit ead540f

Please sign in to comment.