summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2011-06-10 10:59:05 +0200
committerAndy McCurdy <andy@andymccurdy.com>2011-06-10 10:59:05 +0200
commit5c3a5ebcb44b385246e3766bbdce710b6260e140 (patch)
tree6e42d1340ef6fcd71099bb74d26843cf45288a76
parent97f0d20db8175990be67fc1ed86375079f92a2af (diff)
downloadredis-py-5c3a5ebcb44b385246e3766bbdce710b6260e140.tar.gz
version bump 2.4.5
-rw-r--r--CHANGES4
-rw-r--r--redis/__init__.py2
2 files changed, 4 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 343a957..7936759 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,7 @@
+* 2.4.5
+ * The PythonParser now works better when reading zero length strings.
* 2.4.4
- * Fix a typo introduced in 2.4.3
+ * Fixed a typo introduced in 2.4.3
* 2.4.3
* Fixed a bug in the UnixDomainSocketConnection caused when trying to
form an error message after a socket error.
diff --git a/redis/__init__.py b/redis/__init__.py
index 2f5a90c..897ebb1 100644
--- a/redis/__init__.py
+++ b/redis/__init__.py
@@ -15,7 +15,7 @@ from redis.exceptions import (
)
-__version__ = '2.4.4'
+__version__ = '2.4.5'
VERSION = tuple(map(int, __version__.split('.')))
__all__ = [