diff options
author | Andy McCurdy <andy@andymccurdy.com> | 2011-03-17 13:19:16 -0700 |
---|---|---|
committer | Andy McCurdy <andy@andymccurdy.com> | 2011-03-17 13:19:16 -0700 |
commit | 368cccd29559ec0915ec5f4739504a55bed2a644 (patch) | |
tree | ac52b80b233ea0b61dd719b4fd8b12c1d6bde2b7 | |
parent | fe18db0fc0fd0112d7bb2071c3760799b3ac739b (diff) | |
download | redis-py-368cccd29559ec0915ec5f4739504a55bed2a644.tar.gz |
version bump
-rw-r--r-- | CHANGES | 2 | ||||
-rw-r--r-- | redis/__init__.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -* 2.2.4 (in-development) +* 2.2.4 * WARNING: Potential backwards incompatible change - Changed order of parameters of ZREVRANGEBYSCORE to match those of the actual Redis command. This is only backwards-incompatible if you were passing max and min via diff --git a/redis/__init__.py b/redis/__init__.py index c7d2460..3b47484 100644 --- a/redis/__init__.py +++ b/redis/__init__.py @@ -11,7 +11,7 @@ from redis.exceptions import ( ) -__version__ = '2.2.3' +__version__ = '2.2.4' __all__ = [ 'Redis', 'ConnectionPool', |