summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES3
-rw-r--r--MANIFEST.in2
-rw-r--r--redis/__init__.py2
3 files changed, 4 insertions, 3 deletions
diff --git a/CHANGES b/CHANGES
index c0874eb..6de5a4e 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,4 +1,5 @@
-* 2.7.4 (in development)
+* 2.7.4
+ * Added missing INCRBY method. Thanks Krzysztof Dorosz.
* SET now accepts the EX, PX, NX and XX options from Redis 2.6.12. These
options will generate errors if these options are used when connected
to a Redis server < 2.6.12. Thanks George Yoshida.
diff --git a/MANIFEST.in b/MANIFEST.in
index 07876c2..afd4e28 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,5 +1,5 @@
include CHANGES
include INSTALL
include LICENSE
-include README.md
+include README.rst
recursive-include tests *
diff --git a/redis/__init__.py b/redis/__init__.py
index c64fa98..c67f426 100644
--- a/redis/__init__.py
+++ b/redis/__init__.py
@@ -18,7 +18,7 @@ from redis.exceptions import (
)
-__version__ = '2.7.3'
+__version__ = '2.7.4'
VERSION = tuple(map(int, __version__.split('.')))
__all__ = [