summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES2
-rw-r--r--redis/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 37db5d4..5f4d5d2 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,4 +1,4 @@
-* 2.4.14 (in development)
+* 2.6.0
* Changed (p)subscribe and (p)unsubscribe to no longer return messages
indicating the channel was subscribed/unsubscribed to. These messages
are available in the listen() loop instead. This is to prevent the
diff --git a/redis/__init__.py b/redis/__init__.py
index 9af264e..95b739e 100644
--- a/redis/__init__.py
+++ b/redis/__init__.py
@@ -17,7 +17,7 @@ from redis.exceptions import (
)
-__version__ = '2.4.13'
+__version__ = '2.6.0'
VERSION = tuple(map(int, __version__.split('.')))
__all__ = [