summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2011-03-17 13:19:16 -0700
committerAndy McCurdy <andy@andymccurdy.com>2011-03-17 13:19:16 -0700
commit368cccd29559ec0915ec5f4739504a55bed2a644 (patch)
treeac52b80b233ea0b61dd719b4fd8b12c1d6bde2b7
parentfe18db0fc0fd0112d7bb2071c3760799b3ac739b (diff)
downloadredis-py-368cccd29559ec0915ec5f4739504a55bed2a644.tar.gz
version bump
-rw-r--r--CHANGES2
-rw-r--r--redis/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 68096bc..7551cd2 100644
--- a/CHANGES
+++ b/CHANGES
@@ -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',