summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES2
-rw-r--r--redis/__init__.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 2a1c746..8306675 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,5 @@
+* 3.2.1
+ * Fix SentinelConnectionPool to work in multiprocess/forked environments.
* 3.2.0
* Added support for `select.poll` to test whether data can be read
on a socket. This should allow for significantly more connections to
diff --git a/redis/__init__.py b/redis/__init__.py
index 7c5355e..b74c403 100644
--- a/redis/__init__.py
+++ b/redis/__init__.py
@@ -29,7 +29,7 @@ def int_or_str(value):
return value
-__version__ = '3.2.0'
+__version__ = '3.2.1'
VERSION = tuple(map(int_or_str, __version__.split('.')))
__all__ = [