Skip to content

Commit

Permalink
version bump to 2.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
andy committed Jul 13, 2011
1 parent 9a182c7 commit 89da553
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
13 changes: 8 additions & 5 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
* 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.
* Removed the PUBLISH method from the PubSub class. Connections that are
[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
Expand Down
2 changes: 1 addition & 1 deletion redis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
)


__version__ = '2.4.5'
__version__ = '2.4.6'
VERSION = tuple(map(int, __version__.split('.')))

__all__ = [
Expand Down

0 comments on commit 89da553

Please sign in to comment.