summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES2
-rw-r--r--redis/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 9b69339..b0641e9 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 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__ = [