diff options
-rw-r--r-- | CHANGES | 2 | ||||
-rw-r--r-- | redis/__init__.py | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -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__ = [ |