Skip to content

Commit

Permalink
Bump version: 3.7.0 → 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Oct 17, 2022
1 parent fc6f605 commit 1497012
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.7.0
current_version = 4.0.0
commit = True
tag = True

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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



Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion src/redis_lock/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 1497012

Please sign in to comment.