summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandy <andy@whiskeymedia.com>2013-05-14 00:35:51 -0700
committerandy <andy@whiskeymedia.com>2013-05-14 00:35:51 -0700
commitb5214ab814b6c35aa8f880ef61c0719b851e60e0 (patch)
tree5014228c3bd60f61dd2b6a9088f0918528b5421f
parentdf1b691b01283c81e87ed7400ed8ca33f3329af8 (diff)
downloadredis-py-2.7.5.tar.gz
version 2.7.52.7.5
-rw-r--r--CHANGES3
-rw-r--r--redis/__init__.py2
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 86d89d2..8ebd12b 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,7 @@
-* 2.7.5 (in development)
+* 2.7.5
* DEL, HDEL and ZREM commands now return the numbers of keys deleted
instead of just True/False.
+ * from_url now supports URIs with a port number. Thanks Aaron Westendorf.
* 2.7.4
* Added missing INCRBY method. Thanks Krzysztof Dorosz.
* SET now accepts the EX, PX, NX and XX options from Redis 2.6.12. These
diff --git a/redis/__init__.py b/redis/__init__.py
index c67f426..949ea70 100644
--- a/redis/__init__.py
+++ b/redis/__init__.py
@@ -18,7 +18,7 @@ from redis.exceptions import (
)
-__version__ = '2.7.4'
+__version__ = '2.7.5'
VERSION = tuple(map(int, __version__.split('.')))
__all__ = [