summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES5
-rw-r--r--redis/__init__.py2
-rw-r--r--setup.py2
3 files changed, 7 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 1e5b63f..4a7c8d1 100644
--- a/CHANGES
+++ b/CHANGES
@@ -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',
diff --git a/setup.py b/setup.py
index 644e98b..fb9ea54 100644
--- a/setup.py
+++ b/setup.py
@@ -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',