summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandy <andy@whiskeymedia.com>2011-07-20 14:50:08 -0700
committerandy <andy@whiskeymedia.com>2011-07-20 14:50:08 -0700
commit907555c786a108a97643b9ceb35cabda6119e01f (patch)
treeb70d2eb65bbd7818eaba3a20580e5907516f0dac
parent6dc7c2139f8c8f7c762d8dbd38a80f2accca5c8f (diff)
downloadredis-py-2.4.8.tar.gz
2.4.82.4.8
-rw-r--r--CHANGES2
-rw-r--r--redis/__init__.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index b51b90d..e2f634e 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,5 @@
+* 2.4.8
+ * Imported with_statement from __future__ for Python 2.5 compatability.
* 2.4.7
* Fixed a bug where some connections were not getting released back to the
connection pool after pipeline execution.
diff --git a/redis/__init__.py b/redis/__init__.py
index 91b481b..3d65fff 100644
--- a/redis/__init__.py
+++ b/redis/__init__.py
@@ -16,7 +16,7 @@ from redis.exceptions import (
)
-__version__ = '2.4.7'
+__version__ = '2.4.8'
VERSION = tuple(map(int, __version__.split('.')))
__all__ = [