summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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__ = [