summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--00-RELEASENOTES11
-rw-r--r--src/version.h2
2 files changed, 12 insertions, 1 deletions
diff --git a/00-RELEASENOTES b/00-RELEASENOTES
index 726e7cec8..59fae246f 100644
--- a/00-RELEASENOTES
+++ b/00-RELEASENOTES
@@ -18,6 +18,17 @@ to modify your program in order to use Redis 2.4.
CHANGELOG
---------
+What's new in Redis 2.4.17
+==========================
+
+* INFO command now contains the run_id field for Redis Sentinel compatibility.
+* Support for the "slave priority" parameter published via INFO and used by
+ Redis Sentinel.
+* [BUGFIX] An optimization to convert double values into strings was not used
+ because of an error in a preprocessor directive. Now it's fixed. Saving
+ datasets with many sorted sets should be faster.
+* [BUGFIX] Fixed a theoretic bug in the ziplist implementation.
+
What's new in Redis 2.4.16
==========================
diff --git a/src/version.h b/src/version.h
index 529c9cdc6..08c6d8411 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1 +1 @@
-#define REDIS_VERSION "2.4.16"
+#define REDIS_VERSION "2.4.17"