File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
- * (in development )
1
+ * 3.5.0 (April 29, 2020 )
2
2
* Removed exception trapping from __del__ methods. redis-py objects that
3
3
hold various resources implement __del__ cleanup methods to release
4
4
those resources when the object goes out of scope. This provides a
21
21
* Reset the watched state of pipelines after calling exec. This saves
22
22
a roundtrip to the server by not having to call UNWATCH within
23
23
Pipeline.reset(). Thanks @nickgaya, #1299/#1302
24
- * Add the KEEPTTL option for the SET command. Thanks @laixintao #1304/#1280
24
+ * Added the KEEPTTL option for the SET command. Thanks
25
+ @laixintao #1304/#1280
26
+ * Added the MEMORY STATS command. #1268
25
27
* Lock.extend() now has a new option, `replace_ttl`. When False (the
26
28
default), Lock.extend() adds the `additional_time` to the lock's existing
27
29
TTL. When replace_ttl=True, the lock's existing TTL is replaced with
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ def int_or_str(value):
31
31
return value
32
32
33
33
34
- __version__ = '3.4.1 '
34
+ __version__ = '3.5.0 '
35
35
VERSION = tuple (map (int_or_str , __version__ .split ('.' )))
36
36
37
37
__all__ = [
You can’t perform that action at this time.
0 commit comments