summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2020-04-29 13:04:39 -0700
committerAndy McCurdy <andy@andymccurdy.com>2020-04-29 13:04:39 -0700
commita9347cd0bc3c361cbdf4af6811ee465211eabdb0 (patch)
tree009e6ce8939d0ada608c77cfa13d275783b29a4e /CHANGES
parent9aef5fec6a30e985a208d86333cf290dda28b7a7 (diff)
downloadredis-py-a9347cd0bc3c361cbdf4af6811ee465211eabdb0.tar.gz
version 3.5.03.5.0
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES6
1 files changed, 4 insertions, 2 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