summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandy <andy@whiskeymedia.com>2012-10-07 23:39:36 -0700
committerandy <andy@whiskeymedia.com>2012-10-07 23:39:36 -0700
commitb3577e579c42c35965210515f4c1d219458548e5 (patch)
tree21033bd6662f3257a988f80d194fba976576b375
parent2e732dc1043abfd1aa7bbaa0f0f6e0d2e7670636 (diff)
downloadredis-py-b3577e579c42c35965210515f4c1d219458548e5.tar.gz
2.7.0, version bump2.7.0
-rw-r--r--CHANGES3
-rw-r--r--redis/__init__.py2
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 86bf74a..15a5491 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,4 +1,4 @@
-* 2.7.0 (in development)
+* 2.7.0
* Added BITOP and BITCOUNT commands. Thanks Mark Tozzi.
* Added the TIME command. Thanks Jason Knight.
* Added support for LUA scripting. Thanks to Angus Peart, Drew Smathers,
@@ -16,6 +16,7 @@
* Added INCRBYFLOAT/HINCRBYFLOAT commands. Thanks Nikita Uvarov.
* High precision floating point values won't lose their precision when
being sent to the Redis server. Thanks Jason Oster and Oleg Pudeyev.
+ * Added CLIENT LIST/CLIENT KILL commands
* 2.6.2
* `from_url` is now available as a classmethod on client classes. Thanks
Jon Parise for the patch.
diff --git a/redis/__init__.py b/redis/__init__.py
index d0afa72..8bbdbb6 100644
--- a/redis/__init__.py
+++ b/redis/__init__.py
@@ -17,7 +17,7 @@ from redis.exceptions import (
)
-__version__ = '2.6.2'
+__version__ = '2.7.0'
VERSION = tuple(map(int, __version__.split('.')))
__all__ = [