diff --git a/00-RELEASENOTES b/00-RELEASENOTES index 5a2dfceb..e4c4c70c 100644 --- a/00-RELEASENOTES +++ b/00-RELEASENOTES @@ -12,6 +12,16 @@ for 2.0. CHANGELOG --------- +What's new in Redis 2.2.14 +========================== + +* [BUGFIX] Fixed a rare but possible AOF race condition that could result into + duplicated commands inside the AOF. +* [BUGFIX] Don't replicate SAVE. +* LRANGE optimization may drastically improve performances when querying the + final part of a long list. +* redis-cli now implements a --latency mode to monitory Redis delay. + What's new in Redis 2.2.13 ========================== diff --git a/src/version.h b/src/version.h index d3c430a2..7a152b4e 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define REDIS_VERSION "2.2.13" +#define REDIS_VERSION "2.2.14"