diff options
author | andy <andy@whiskeymedia.com> | 2011-07-22 16:25:36 -0700 |
---|---|---|
committer | andy <andy@whiskeymedia.com> | 2011-07-22 16:25:36 -0700 |
commit | e74ebdff99d654bbfa17116c8e8d784374211afc (patch) | |
tree | ff3fb97e6ec3d18d64c0e9a59b578785618d03b8 | |
parent | 79d22358410936358c71c88abbdb2a26e3cedc28 (diff) | |
download | redis-py-e74ebdff99d654bbfa17116c8e8d784374211afc.tar.gz |
2.4.92.4.9
-rw-r--r-- | CHANGES | 4 | ||||
-rw-r--r-- | redis/__init__.py | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -1,7 +1,9 @@ -* 2.4.9 (in development) +* 2.4.9 * Removed socket retry logic in Connection. This is the responsbility of the caller to determine if the command is safe and can be retried. Thanks David Wolver. + * Added some extra guards around various types of exceptions being raised + when sending or parsing data. Thanks David Wolver and Denis Bilenko. * 2.4.8 * Imported with_statement from __future__ for Python 2.5 compatability. * 2.4.7 diff --git a/redis/__init__.py b/redis/__init__.py index 3d65fff..48b7ddd 100644 --- a/redis/__init__.py +++ b/redis/__init__.py @@ -16,7 +16,7 @@ from redis.exceptions import ( ) -__version__ = '2.4.8' +__version__ = '2.4.9' VERSION = tuple(map(int, __version__.split('.'))) __all__ = [ |