From ab1c659aaac8a59c4e4055e1598920706192fa42 Mon Sep 17 00:00:00 2001 From: Andy McCurdy Date: Thu, 30 Jan 2020 18:06:15 -0800 Subject: [PATCH] 3.4.0 --- CHANGES | 2 +- redis/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 9b693393e6..b0641e97bf 100644 --- a/CHANGES +++ b/CHANGES @@ -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 afc59e9bae..369d39e257 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__ = [