From e1849b6456bfd09b259292d8cbe2b508efc2c1a2 Mon Sep 17 00:00:00 2001 From: antirez Date: Wed, 11 Jan 2012 20:30:55 +0100 Subject: [PATCH] Redis 2.4.6 --- 00-RELEASENOTES | 12 ++++++++++++ src/version.h | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/00-RELEASENOTES b/00-RELEASENOTES index 15415bbd..141faaae 100644 --- a/00-RELEASENOTES +++ b/00-RELEASENOTES @@ -18,6 +18,18 @@ to modify your program in order to use Redis 2.4. CHANGELOG --------- +What's new in Redis 2.4.6 +========================= + +* [BUGFIX] Fixed issue #141 part 1: Possible protocol desyncs when clients send + wrong protocol is now fixed. (See issue 141 for more details) +* [BUGFIX] Fixed issue #141 part 2: Connection of multiple slaves used to result + from time to time into corrupted protocol send to slaves connected + after the first one. (See issue 141 for more details) +* [BUGFIX] Do not propagate DEBUG LOADAOF. +* New INFO contains information such as ip/port/state for every conneced slave. +* Show GCC version in INFO output. + What's new in Redis 2.4.5 ========================= diff --git a/src/version.h b/src/version.h index de234b05..77e0918c 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define REDIS_VERSION "2.4.5" +#define REDIS_VERSION "2.4.6"