From 273f41023d8004449d278f1ce55a1d0cde7e40e3 Mon Sep 17 00:00:00 2001 From: antirez Date: Fri, 23 Dec 2011 09:43:21 +0100 Subject: [PATCH] Redis 2.4.5 --- 00-RELEASENOTES | 12 ++++++++++++ src/version.h | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/00-RELEASENOTES b/00-RELEASENOTES index 8cda24ea..15415bbd 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.5 +========================= + +* [BUGFIX] Fixed a ZUNIONSTORE/ZINTERSTORE bug that can cause a NaN to be + inserted as a sorted set element score. This happens when one of the + elements has +inf/-inf score and the weight used is 0. +* [BUGFIX] Fixed memory leak in CLIENT INFO. +* [BUGFIX] Fixed a non critical SORT bug (Issue 224). +* [BUGFIX] Fixed a replication bug: now the timeout configuration is respected + during the connection with the master. +* --quiet option implemented in the Redis test. + What's new in Redis 2.4.4 ========================= diff --git a/src/version.h b/src/version.h index 59162f5a..de234b05 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define REDIS_VERSION "2.4.4" +#define REDIS_VERSION "2.4.5"