summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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__ = [