diff --git a/00-RELEASENOTES b/00-RELEASENOTES index 145629bc7349e2a2499dd6af29624f693dde46d5..3c3a8d6f489b2f1e7a24b35a5d38066434a3ddd3 100644 --- a/00-RELEASENOTES +++ b/00-RELEASENOTES @@ -12,6 +12,13 @@ for 2.0. CHANGELOG --------- +What's new in Redis 2.2.7 +========================= + +* Fixed bug #543-2 (the issue was reopened with a completely different report) + that caused Redis to randomly crash on list push performed against lists + with other clients blocked with BLPOP (or variants). + What's new in Redis 2.2.6 ========================= diff --git a/src/version.h b/src/version.h index e48fe137fc72f0659e732860428fe129f55ccd74..d7628d267b535c87e5f0b46caa60d5ee3a4759be 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define REDIS_VERSION "2.2.6" +#define REDIS_VERSION "2.2.7"