From 26375709c5c5eb259ffb08673cb066773b57336f Mon Sep 17 00:00:00 2001 From: antirez Date: Tue, 22 Apr 2014 10:14:57 +0200 Subject: [PATCH] Redis 2.8.9. --- 00-RELEASENOTES | 10 ++++++++++ src/version.h | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/00-RELEASENOTES b/00-RELEASENOTES index 1c6efcc6..37c0e546 100644 --- a/00-RELEASENOTES +++ b/00-RELEASENOTES @@ -14,6 +14,16 @@ HIGH: There is a critical bug that may affect a subset of users. Upgrade! CRITICAL: There is a critical bug affecting MOST USERS. Upgrade ASAP. -------------------------------------------------------------------------------- +--[ Redis 2.8.9 ] Release date: 22 Apr 2014 + +# UPGRADE URGENCY: LOW, only new features introduced, no bugs fixed. + +* [NEW] The HyperLogLog data structure. You can read more about it + in this blog post. http://antirez.com/news/75 +* [NEW] The Sorted Set data type has now support for lexicographic range + queries, check the new commands ZRANGEBYLEX, ZLEXCOUNT and + ZREMRANGEBYLEX, which are documented at http://redis.io. + --[ Redis 2.8.8 ] Release date: 25 Mar 2014 # UPGRADE URGENCY: HIGH for Redis, LOW for Sentinel. There is a potentially diff --git a/src/version.h b/src/version.h index d1bcb020..b8436714 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define REDIS_VERSION "2.8.8" +#define REDIS_VERSION "2.8.9" -- GitLab