From 149701266b4d147d6321875f19f604e9bacf4f4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ionel=20Cristian=20M=C4=83rie=C8=99?= Date: Mon, 17 Oct 2022 16:12:28 +0300 Subject: [PATCH] =?UTF-8?q?Bump=20version:=203.7.0=20=E2=86=92=204.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.rst | 4 ++-- docs/conf.py | 2 +- setup.py | 2 +- src/redis_lock/__init__.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index fda2483..10ddf4a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.7.0 +current_version = 4.0.0 commit = True tag = True diff --git a/README.rst b/README.rst index ce36483..ad6c059 100644 --- a/README.rst +++ b/README.rst @@ -51,9 +51,9 @@ Overview :alt: Supported implementations :target: https://pypi.org/project/python-redis-lock -.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-redis-lock/v3.7.0.svg +.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-redis-lock/v4.0.0.svg :alt: Commits since latest release - :target: https://github.com/ionelmc/python-redis-lock/compare/v3.7.0...master + :target: https://github.com/ionelmc/python-redis-lock/compare/v4.0.0...master diff --git a/docs/conf.py b/docs/conf.py index 0b7a797..ba06a4e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -20,7 +20,7 @@ year = '2013-2022' author = 'Ionel Cristian Mărieș' copyright = '{0}, {1}'.format(year, author) -version = release = '3.7.0' +version = release = '4.0.0' linkcheck_ignore = [ # This redirects to hosted % image on AWS. diff --git a/setup.py b/setup.py index 0a473d4..67c7648 100755 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ def read(*names, **kwargs): setup( name='python-redis-lock', - version='3.7.0', + version='4.0.0', license='BSD-2-Clause', description='Lock context manager implemented via redis SETNX/BLPOP.', long_description='{}\n{}'.format( diff --git a/src/redis_lock/__init__.py b/src/redis_lock/__init__.py index 5f7eb03..d4d0caa 100644 --- a/src/redis_lock/__init__.py +++ b/src/redis_lock/__init__.py @@ -7,7 +7,7 @@ from redis import StrictRedis -__version__ = '3.7.0' +__version__ = '4.0.0' logger_for_acquire = getLogger(f"{__name__}.acquire") logger_for_refresh_thread = getLogger(f"{__name__}.refresh.thread")