Skip to content

Commit a9347cd

Browse files
committed
version 3.5.0
1 parent 9aef5fe commit a9347cd

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGES

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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
@@ -21,7 +21,9 @@
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

redis/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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'
3535
VERSION = tuple(map(int_or_str, __version__.split('.')))
3636

3737
__all__ = [

0 commit comments

Comments
 (0)