Skip to content

Commit 1497012

Browse files
committed
Bump version: 3.7.0 → 4.0.0
1 parent fc6f605 commit 1497012

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.7.0
2+
current_version = 4.0.0
33
commit = True
44
tag = True
55

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ Overview
5151
:alt: Supported implementations
5252
:target: https://pypi.org/project/python-redis-lock
5353

54-
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-redis-lock/v3.7.0.svg
54+
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-redis-lock/v4.0.0.svg
5555
:alt: Commits since latest release
56-
:target: https://github.com/ionelmc/python-redis-lock/compare/v3.7.0...master
56+
:target: https://github.com/ionelmc/python-redis-lock/compare/v4.0.0...master
5757

5858

5959

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
year = '2013-2022'
2121
author = 'Ionel Cristian Mărieș'
2222
copyright = '{0}, {1}'.format(year, author)
23-
version = release = '3.7.0'
23+
version = release = '4.0.0'
2424

2525
linkcheck_ignore = [
2626
# This redirects to hosted % image on AWS.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def read(*names, **kwargs):
2020

2121
setup(
2222
name='python-redis-lock',
23-
version='3.7.0',
23+
version='4.0.0',
2424
license='BSD-2-Clause',
2525
description='Lock context manager implemented via redis SETNX/BLPOP.',
2626
long_description='{}\n{}'.format(

src/redis_lock/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
from redis import StrictRedis
99

10-
__version__ = '3.7.0'
10+
__version__ = '4.0.0'
1111

1212
logger_for_acquire = getLogger(f"{__name__}.acquire")
1313
logger_for_refresh_thread = getLogger(f"{__name__}.refresh.thread")

0 commit comments

Comments
 (0)