diff options
author | andy <andy@andymccurdy.com> | 2012-07-17 23:43:59 -0700 |
---|---|---|
committer | andy <andy@andymccurdy.com> | 2012-07-17 23:43:59 -0700 |
commit | b82bee8578a6380527b579948e366ec542685f93 (patch) | |
tree | 19cf764c562023dc462c952ee2a37c5720d17b82 | |
parent | 13996b75194b48021b1536fbd0a584cb8a550318 (diff) | |
download | redis-py-b82bee8578a6380527b579948e366ec542685f93.tar.gz |
version bump2.6.0
-rw-r--r-- | CHANGES | 2 | ||||
-rw-r--r-- | redis/__init__.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -* 2.4.14 (in development) +* 2.6.0 * Changed (p)subscribe and (p)unsubscribe to no longer return messages indicating the channel was subscribed/unsubscribed to. These messages are available in the listen() loop instead. This is to prevent the diff --git a/redis/__init__.py b/redis/__init__.py index 9af264e..95b739e 100644 --- a/redis/__init__.py +++ b/redis/__init__.py @@ -17,7 +17,7 @@ from redis.exceptions import ( ) -__version__ = '2.4.13' +__version__ = '2.6.0' VERSION = tuple(map(int, __version__.split('.'))) __all__ = [ |