summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES6
-rw-r--r--redis/__init__.py2
2 files changed, 5 insertions, 3 deletions
diff --git a/CHANGES b/CHANGES
index 4453ff2..b926270 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,4 +1,4 @@
-* (in development)
+* 3.5.0 (April 29, 2020)
* Removed exception trapping from __del__ methods. redis-py objects that
hold various resources implement __del__ cleanup methods to release
those resources when the object goes out of scope. This provides a
@@ -21,7 +21,9 @@
* Reset the watched state of pipelines after calling exec. This saves
a roundtrip to the server by not having to call UNWATCH within
Pipeline.reset(). Thanks @nickgaya, #1299/#1302
- * Add the KEEPTTL option for the SET command. Thanks @laixintao #1304/#1280
+ * Added the KEEPTTL option for the SET command. Thanks
+ @laixintao #1304/#1280
+ * Added the MEMORY STATS command. #1268
* Lock.extend() now has a new option, `replace_ttl`. When False (the
default), Lock.extend() adds the `additional_time` to the lock's existing
TTL. When replace_ttl=True, the lock's existing TTL is replaced with
diff --git a/redis/__init__.py b/redis/__init__.py
index aeb1e22..1e67395 100644
--- a/redis/__init__.py
+++ b/redis/__init__.py
@@ -31,7 +31,7 @@ def int_or_str(value):
return value
-__version__ = '3.4.1'
+__version__ = '3.5.0'
VERSION = tuple(map(int_or_str, __version__.split('.')))
__all__ = [