Skip to content

Commit

Permalink
redis-py 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
andymccurdy committed Nov 15, 2018
1 parent c8936f7 commit dcb135c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGES
@@ -1,3 +1,11 @@
* 3.0.1
* Fixed regression with UnixDomainSocketConnection caused by 3.0.0.
Thanks Jyrki Muukkonen
* Fixed an issue with the new asynchronous flag on flushdb and flushall.
Thanks rogeryen
* Updated Lock.locked() method to indicate whether *any* process has
acquired the lock, not just the current one. This is in line with
the behavior of threading.Lock. Thanks Alan Justino da Silva
* 3.0.0
BACKWARDS INCOMPATIBLE CHANGES
* When using a Lock as a context manager and the lock fails to be acquired
Expand Down
2 changes: 1 addition & 1 deletion redis/__init__.py
Expand Up @@ -29,7 +29,7 @@ def int_or_str(value):
return value


__version__ = '3.0.0.post1'
__version__ = '3.0.1'
VERSION = tuple(map(int_or_str, __version__.split('.')))

__all__ = [
Expand Down

0 comments on commit dcb135c

Please sign in to comment.