summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2019-03-15 10:47:27 -0700
committerAndy McCurdy <andy@andymccurdy.com>2019-03-15 10:47:27 -0700
commitf87d40c64849acfbb9656aeafbeb6c7e4a264e23 (patch)
tree3dd2d016fa4c6a30ae7b0991d191bda8936b2908
parentd61a15e2be5fdeb165b98e63912ab88845ab1315 (diff)
downloadredis-py-f87d40c64849acfbb9656aeafbeb6c7e4a264e23.tar.gz
3.2.13.2.1
-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__ = [