diff --git a/00-RELEASENOTES b/00-RELEASENOTES index 910f3a7e90bd45bf286203b7372f20d974fe1878..7234e29f913e19d66c5bcf5b7c71d858877b622a 100644 --- a/00-RELEASENOTES +++ b/00-RELEASENOTES @@ -12,6 +12,14 @@ for 2.0. CHANGELOG --------- +What's new in Redis 2.2.11 +========================== + +* Solved a never reported but possibly critical bug in the AOF and RDB +persistence, introduced with the new version of the iterator: In very rare +circumstances the AOF (after rerwite) or the rdb file may contain the same +key more than one time. + What's new in Redis 2.2.10 ========================== diff --git a/src/version.h b/src/version.h index de66e7208ddc7194727ca2ed1ddaec8966482305..90686116ed4615548fcd1d9c63439ea781ebfb2e 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define REDIS_VERSION "2.2.10" +#define REDIS_VERSION "2.2.11"