summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandy <andy@whiskeymedia.com>2011-07-13 13:20:34 -0700
committerandy <andy@whiskeymedia.com>2011-07-13 13:20:34 -0700
commit89da5539210a0309bd0b7ed3d805ca6ab4a28fb2 (patch)
tree14a583df9f63ec1896743ba00caf1f3a7ff64da2
parent9a182c7ad3fd2056120320866e8ffd42155e7b67 (diff)
downloadredis-py-89da5539210a0309bd0b7ed3d805ca6ab4a28fb2.tar.gz
version bump to 2.4.62.4.6
-rw-r--r--CHANGES13
-rw-r--r--redis/__init__.py2
2 files changed, 9 insertions, 6 deletions
diff --git a/CHANGES b/CHANGES
index 72f1444..e91b8da 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,9 +1,9 @@
-* 2.4.6 (in development)
+* 2.4.6
* Variadic arguments for SADD, SREM, ZREN, HDEL, LPUSH, and RPUSH. Thanks
Raphaƫl Vinot.
- * Fixed an error in the Hiredis parser that occasionally caused the
- socket connection to become corrupted and unusable. This became noticeable
- once connection pools started to be used.
+ * (CRITICAL) Fixed an error in the Hiredis parser that occasionally caused
+ the socket connection to become corrupted and unusable. This became
+ noticeable once connection pools started to be used.
* ZRANGE, ZREVRANGE, ZRANGEBYSCORE, and ZREVRANGEBYSCORE now take an
additional optional argument, score_cast_func, which is a callable used
to cast the score value in the return type. The default is float.
@@ -11,7 +11,10 @@
[P]SUBSCRIBEd cannot issue PUBLISH commands, so it doesn't make to have
it here.
* Pipelines now contain WATCH and UNWATCH. Calling WATCH or UNWATCH from
- the base client class will result in a deprecation warning.
+ the base client class will result in a deprecation warning. After
+ WATCHing one or more keys, the pipeline will be placed in immediate
+ execution mode until UNWATCH or MULTI are called. Refer to the new
+ pipeline docs in the README for more information.
* 2.4.5
* The PythonParser now works better when reading zero length strings.
* 2.4.4
diff --git a/redis/__init__.py b/redis/__init__.py
index a80b526..aa94c01 100644
--- a/redis/__init__.py
+++ b/redis/__init__.py
@@ -16,7 +16,7 @@ from redis.exceptions import (
)
-__version__ = '2.4.5'
+__version__ = '2.4.6'
VERSION = tuple(map(int, __version__.split('.')))
__all__ = [