From dcb135c8e04a914c3813933493758f608c6bec00 Mon Sep 17 00:00:00 2001 From: Andy McCurdy Date: Thu, 15 Nov 2018 13:45:27 -0800 Subject: [PATCH] redis-py 3.0.1 --- CHANGES | 8 ++++++++ redis/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 42f7c4a349..554485e1f3 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,11 @@ +* 3.0.1 + * Fixed regression with UnixDomainSocketConnection caused by 3.0.0. + Thanks Jyrki Muukkonen + * Fixed an issue with the new asynchronous flag on flushdb and flushall. + Thanks rogeryen + * Updated Lock.locked() method to indicate whether *any* process has + acquired the lock, not just the current one. This is in line with + the behavior of threading.Lock. Thanks Alan Justino da Silva * 3.0.0 BACKWARDS INCOMPATIBLE CHANGES * When using a Lock as a context manager and the lock fails to be acquired diff --git a/redis/__init__.py b/redis/__init__.py index 99b095afbb..dc78f73011 100644 --- a/redis/__init__.py +++ b/redis/__init__.py @@ -29,7 +29,7 @@ def int_or_str(value): return value -__version__ = '3.0.0.post1' +__version__ = '3.0.1' VERSION = tuple(map(int_or_str, __version__.split('.'))) __all__ = [