File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 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 )
22 * Removed exception trapping from __del__ methods. redis-py objects that
33 hold various resources implement __del__ cleanup methods to release
44 those resources when the object goes out of scope. This provides a
2121 * Reset the watched state of pipelines after calling exec. This saves
2222 a roundtrip to the server by not having to call UNWATCH within
2323 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
2527 * Lock.extend() now has a new option, `replace_ttl`. When False (the
2628 default), Lock.extend() adds the `additional_time` to the lock's existing
2729 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):
3131 return value
3232
3333
34- __version__ = '3.4.1 '
34+ __version__ = '3.5.0 '
3535VERSION = tuple (map (int_or_str , __version__ .split ('.' )))
3636
3737__all__ = [
You can’t perform that action at this time.
0 commit comments