diff options
-rw-r--r-- | CHANGES | 2 | ||||
-rw-r--r-- | redis/__init__.py | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -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__ = [ |