diff options
author | Andy McCurdy <andy@andymccurdy.com> | 2020-01-30 18:06:15 -0800 |
---|---|---|
committer | Andy McCurdy <andy@andymccurdy.com> | 2020-01-30 18:06:15 -0800 |
commit | ab1c659aaac8a59c4e4055e1598920706192fa42 (patch) | |
tree | ebba60e70c1831dce0782c6b1c6e8453b79fb142 | |
parent | 4287963d1e51e0bd9b1b78d78981d67e2c0213db (diff) | |
download | redis-py-3.4.0.tar.gz |
3.4.03.4.0
-rw-r--r-- | CHANGES | 2 | ||||
-rw-r--r-- | redis/__init__.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -* (IN DEVELOPMENT) +* 3.4.0 * Allow empty pipelines to be executed if there are WATCHed keys. This is a convenient way to test if any of the watched keys changed without actually running any other commands. Thanks @brianmaissy. diff --git a/redis/__init__.py b/redis/__init__.py index afc59e9..369d39e 100644 --- a/redis/__init__.py +++ b/redis/__init__.py @@ -30,7 +30,7 @@ def int_or_str(value): return value -__version__ = '3.3.11' +__version__ = '3.4.0' VERSION = tuple(map(int_or_str, __version__.split('.'))) __all__ = [ |