summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2014-08-14 10:18:53 -0700
committerAndy McCurdy <andy@andymccurdy.com>2014-08-14 10:18:53 -0700
commit4d0b0afe9c9a431ed50c3e9fb95a0aa88b1f1038 (patch)
tree6886a30d9298fc96e336e559c6bc69523277b2e0
parentb3ad1d5dbb6d1ae3b3acdad0bd532772714054a6 (diff)
downloadredis-py-4d0b0afe9c9a431ed50c3e9fb95a0aa88b1f1038.tar.gz
2.10.32.10.3
-rw-r--r--CHANGES3
-rw-r--r--redis/__init__.py2
2 files changed, 4 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index e864576..c455f05 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,6 @@
+* 2.10.3
+ * Fixed a bug with the bytearray support introduced in 2.10.2. Thanks
+ Josh Owen.
* 2.10.2
* Added support for Hiredis's new bytearray support. Thanks
https://github.com/tzickel
diff --git a/redis/__init__.py b/redis/__init__.py
index 07b50bc..3b0995d 100644
--- a/redis/__init__.py
+++ b/redis/__init__.py
@@ -22,7 +22,7 @@ from redis.exceptions import (
)
-__version__ = '2.10.2'
+__version__ = '2.10.3'
VERSION = tuple(map(int, __version__.split('.')))
__all__ = [