diff options
-rw-r--r-- | CHANGES | 5 | ||||
-rw-r--r-- | redis/__init__.py | 2 | ||||
-rw-r--r-- | setup.py | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,6 +1,11 @@ * 2.2.2 * Fixed a bug in ZREVRANK where retriving the rank of a value not in the zset would raise an error. + * Fixed a bug in Connection.send where the errno import was getting + overwritten by a local variable. + * Fixed a bug in SLAVEOF when promoting an existing slave to a master. + * Reverted change of download URL back to redis-VERSION.tar.gz. 2.2.1's + change of this actually broke Pypi for Pip installs. Sorry! * 2.2.1 * Changed archive name to redis-py-VERSION.tar.gz to not conflict with the Redis server archive. diff --git a/redis/__init__.py b/redis/__init__.py index aed97e8..437f20c 100644 --- a/redis/__init__.py +++ b/redis/__init__.py @@ -3,7 +3,7 @@ from redis.client import Redis, ConnectionPool from redis.exceptions import RedisError, ConnectionError, AuthenticationError from redis.exceptions import ResponseError, InvalidResponse, InvalidData -__version__ = '2.2.1' +__version__ = '2.2.2' __all__ = [ 'Redis', 'ConnectionPool', @@ -7,7 +7,7 @@ sdict = { 'description' : 'Python client for Redis key-value store', 'long_description' : 'Python client for Redis key-value store', 'url': 'http://github.com/andymccurdy/redis-py', - 'download_url' : 'http://cloud.github.com/downloads/andymccurdy/redis-py/redis-py-%s.tar.gz' % __version__, + 'download_url' : 'http://cloud.github.com/downloads/andymccurdy/redis-py/redis-%s.tar.gz' % __version__, 'author' : 'Andy McCurdy', 'author_email' : 'sedrik@gmail.com', 'maintainer' : 'Andy McCurdy', |