summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2018-11-15 13:45:27 -0800
committerAndy McCurdy <andy@andymccurdy.com>2018-11-15 13:45:27 -0800
commitdcb135c8e04a914c3813933493758f608c6bec00 (patch)
treec8e8107bbe74ccabf9f294651e35a8686384843c
parentc8936f7c713e333c21dd7a6d5ecfa582bcafb535 (diff)
downloadredis-py-3.0.tar.gz
redis-py 3.0.13.0.13.0
-rw-r--r--CHANGES8
-rw-r--r--redis/__init__.py2
2 files changed, 9 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 42f7c4a..554485e 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 99b095a..dc78f73 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__ = [