From f5735ee03a8bdaba2c46e4b37a870ac2d3ed5dbc Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Thu, 27 Apr 2017 18:23:40 +0300 Subject: [PATCH 1/2] Update README.md --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 18152d3bf..4f3b7f8b5 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,14 @@ Redisson: Redis based In-Memory Data Grid for Java. ==== -[Quick start](https://github.com/redisson/redisson#quick-start) | [Documentation](https://github.com/redisson/redisson/wiki) | [Javadocs](http://www.javadoc.io/doc/org.redisson/redisson/3.4.0) | [Changelog](https://github.com/redisson/redisson/blob/master/CHANGELOG.md) | [Code examples](https://github.com/redisson/redisson-examples) | [Support chat](https://gitter.im/mrniko/redisson) | [Ultra-fast version](https://redisson.pro) +[Quick start](https://github.com/redisson/redisson#quick-start) | [Documentation](https://github.com/redisson/redisson/wiki) | [Javadocs](http://www.javadoc.io/doc/org.redisson/redisson/3.4.1) | [Changelog](https://github.com/redisson/redisson/blob/master/CHANGELOG.md) | [Code examples](https://github.com/redisson/redisson-examples) | [Support chat](https://gitter.im/mrniko/redisson) | [Ultra-fast version](https://redisson.pro) Based on high-performance async and lock-free Java Redis client and [Netty](http://netty.io) framework. ## Please take part in [Redisson survey](https://www.surveymonkey.com/r/QXQZH5D) | Stable Release Version | JDK Version compatibility | Release Date | | ------------- | ------------- | ------------| -| 3.4.0 | 1.8+ | 26.04.2017 | -| 2.9.0 | 1.6, 1.7, 1.8 and Android | 26.04.2017 | +| 3.4.1 | 1.8+ | 27.04.2017 | +| 2.9.1 | 1.6, 1.7, 1.8 and Android | 27.04.2017 | __NOTE__: Both version lines have same features except `CompletionStage` interface added in 3.x.x @@ -82,23 +82,23 @@ Quick start org.redisson redisson - 3.4.0 + 3.4.1 org.redisson redisson - 2.9.0 + 2.9.1 #### Gradle // JDK 1.8+ compatible - compile 'org.redisson:redisson:3.4.0' + compile 'org.redisson:redisson:3.4.1' // JDK 1.6+ compatible - compile 'org.redisson:redisson:2.9.0' + compile 'org.redisson:redisson:2.9.1' #### Java @@ -123,11 +123,11 @@ RExecutorService executor = redisson.getExecutorService("myExecutorService"); Downloads =============================== -[Redisson 3.4.0](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson&v=3.4.0&e=jar), -[Redisson node 3.4.0](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=3.4.0&e=jar) +[Redisson 3.4.1](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson&v=3.4.1&e=jar), +[Redisson node 3.4.1](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=3.4.1&e=jar) -[Redisson 2.9.0](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson&v=2.9.0&e=jar), -[Redisson node 2.9.0](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=2.9.0&e=jar) +[Redisson 2.9.1](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson&v=2.9.1&e=jar), +[Redisson node 2.9.1](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=2.9.1&e=jar) ### Supported by From 35153462b07c3681ddc325fa6c599d7abd0330b9 Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Thu, 27 Apr 2017 18:26:02 +0300 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 07c8bceb3..c4be704fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ Try __ULTRA-FAST__ [Redisson PRO](https://redisson.pro) edition. ## Please take part in [Redisson survey](https://www.surveymonkey.com/r/QXQZH5D) +### 27-Apr-2017 - versions 2.9.1 and 3.4.1 released + +Fixed - `RLocalCachedMap.getAll` didn't use cache (thanks to Steve Draper) +Fixed - reference to avro module has been removed + ### 26-Apr-2017 - versions 2.9.0 and 3.4.0 released Feature - __`MapReduceService` added__ More details [here](https://github.com/redisson/redisson/wiki/9.-distributed-services/#95-distributed-mapreduce-service)