summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2014-06-01 21:37:09 -0700
committerAndy McCurdy <andy@andymccurdy.com>2014-06-01 21:37:09 -0700
commitdba0e320b691d3af1ba0b8ad68aab0c06e296043 (patch)
treeefd2ae8acb3c5a3fa6f63de64886a4d063af94d3
parent987822339920d31d373d4caac2944f846ad8063c (diff)
downloadredis-py-dba0e320b691d3af1ba0b8ad68aab0c06e296043.tar.gz
2.10.02.10.0
-rw-r--r--CHANGES2
-rw-r--r--redis/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 6e34db3..54288c4 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,4 +1,4 @@
-* 2.10.0 (in development)
+* 2.10.0
* Discontinuted support for Python 2.5. Upgrade. You'll be happier.
* The HiRedis parser will now properly raise ConnectionErrors.
* Completely refactored PubSub support. Fixes all known PubSub bugs and
diff --git a/redis/__init__.py b/redis/__init__.py
index cdfa1f2..7a06897 100644
--- a/redis/__init__.py
+++ b/redis/__init__.py
@@ -22,7 +22,7 @@ from redis.exceptions import (
)
-__version__ = '2.9.1'
+__version__ = '2.10.0'
VERSION = tuple(map(int, __version__.split('.')))
__all__ = [