From dba9424da395ba12a6ba5b4b5a6a3eed84dabd31 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Fri, 29 Jan 2016 13:35:50 +0100 Subject: [PATCH] Update release notes #183 --- README.md | 2 +- RELEASE-NOTES.md | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cbe94b49a7..e79b1cff9a 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ operations such as `BLPOP` and `MULTI`/`EXEC`. lettuce is built with [netty](https://github.com/netty/netty). Supports advanced Redis features such as Sentinel, Cluster, Pipelining, Auto-Reconnect and Redis data models. -This version of lettuce has been tested against Redis 3.0. +This version of lettuce has been tested against Redis 3.2 RC3. * lettuce 3.x works with Java 6, 7 and 8, lettuce 4.x requires Java 8 * [synchronous](https://github.com/mp911de/lettuce/wiki/Basic-usage), [asynchronous](https://github.com/mp911de/lettuce/wiki/Asynchronous-API-%284.0%29) and [reactive](https://github.com/mp911de/lettuce/wiki/Reactive-API-%284.0%29) usage diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 50997de22d..cba336c096 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,7 +1,9 @@ lettuce 4.1 RELEASE NOTES ========================= lettuce 4.1 is here. This release contains numerous features and bugfixes. Lettuce 4.1 introduces reusable -client-resources, an EventBus, client metrics, and support for newly introduced commands. +client-resources, an EventBus, client metrics, and support for newly introduced commands. This version +works with Redis 3.2 RC3 but Redis expects a change in the format of CLUSTER NODES. So watch out for a new +release of lettuce as soon as Redis 3.2 RC4 or a final is released. lettuce is available in two major versions. The 3.x stream and the 4.x stream. Both streams are maintained. @@ -289,6 +291,7 @@ Enhancements * Extend support for CLUSTER commands #111 * Dispatch CLUSTER commands based on the slot #112 * Enable initial support for read from slaves in Master-Slave setups #125 +* Support changed CLUSTER SLOTS #183 Fixes -----