From 357d3ea0a704b0ec537698313cc333686b0e42eb Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Tue, 20 Dec 2016 10:50:01 +0300 Subject: [PATCH 1/3] Update CHANGELOG.md --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 12e129a7f..cbe876415 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ Redisson Releases History ================================ ####Please Note: trunk is current development branch. +####19-Dec-2016 - versions 2.7.2 and 3.2.2 released + +Feature - `RList`, `RSet` and `RScoredSortedSet` implements `RSortable` interface with SORT command support +Feature - `NodeAsync` interface +Feature - `Node.info`, `Node.getNode` methods added +Fixed - elements distribution of `RBlockingFairQueue` across consumers +Fixed - `factory already defined` error during Redisson initialization under Apache Tomcat + ####14-Dec-2016 - versions 2.7.1 and 3.2.1 released Url format used in config files __has changed__. For example: From c20c06809375ef890291c9a8d8e6924fd5f37af3 Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Wed, 21 Dec 2016 10:44:17 +0300 Subject: [PATCH 2/3] Update README.md --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index be7dfe544..b6d706c89 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,8 @@ Redis 2.8+ compatible. | Stable Release Version | JDK Version compatibility | Release Date | | ------------- | ------------- | ------------| -| 3.2.1 | 1.8+ | 14.12.2016 | -| 2.7.1 | 1.6+ | 14.12.2016 | +| 3.2.2 | 1.8+ | 19.12.2016 | +| 2.7.2 | 1.6+ | 19.12.2016 | __NOTE__: Both version lines have same features except `CompletionStage` interface support added in 3.x.x @@ -74,7 +74,7 @@ Features Who uses Redisson ================================ -[Infor](http://www.infor.com/), [New Relic Synthetics](https://newrelic.com/synthetics), [Singtel](http://singtel.com), [Setronica](http://setronica.com/), [Monits](http://monits.com/), [Brookhaven National Laboratory](http://bnl.gov/), [Netflix Dyno client] (https://github.com/Netflix/dyno), [武林Q传](http://www.nbrpg.com/), [Ocous](http://www.ocous.com/), [Invaluable](http://www.invaluable.com/), [Clover](https://www.clover.com/) , [Apache Karaf Decanter](https://karaf.apache.org/projects.html#decanter), [Atmosphere Framework](http://async-io.org/), [BrandsEye](http://brandseye.com), [Datorama](http://datorama.com/), [BrightCloud](http://brightcloud.com/), [Azar](http://azarlive.com/) +[Baidu](http://baidu.com), [Infor](http://www.infor.com/), [New Relic Synthetics](https://newrelic.com/synthetics), [Singtel](http://singtel.com), [Setronica](http://setronica.com/), [Monits](http://monits.com/), [Brookhaven National Laboratory](http://bnl.gov/), [Netflix Dyno client] (https://github.com/Netflix/dyno), [武林Q传](http://www.nbrpg.com/), [Ocous](http://www.ocous.com/), [Invaluable](http://www.invaluable.com/), [Clover](https://www.clover.com/) , [Apache Karaf Decanter](https://karaf.apache.org/projects.html#decanter), [Atmosphere Framework](http://async-io.org/), [BrandsEye](http://brandseye.com), [Datorama](http://datorama.com/), [BrightCloud](http://brightcloud.com/), [Azar](http://azarlive.com/) Articles ================================ @@ -95,23 +95,23 @@ Quick start org.redisson redisson - 3.2.1 + 3.2.2 org.redisson redisson - 2.7.1 + 2.7.2 #### Gradle // JDK 1.8+ compatible - compile 'org.redisson:redisson:3.2.1' + compile 'org.redisson:redisson:3.2.2' // JDK 1.6+ compatible - compile 'org.redisson:redisson:2.7.1' + compile 'org.redisson:redisson:2.7.2' #### Java @@ -136,11 +136,11 @@ RExecutorService executor = redisson.getExecutorService("myExecutorService"); Downloads =============================== -[Redisson 3.2.1](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson&v=3.2.1&e=jar), -[Redisson node 3.2.1](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=3.2.1&e=jar) +[Redisson 3.2.2](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson&v=3.2.2&e=jar), +[Redisson node 3.2.2](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=3.2.2&e=jar) -[Redisson 2.7.1](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson&v=2.7.1&e=jar), -[Redisson node 2.7.1](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=2.7.1&e=jar) +[Redisson 2.7.2](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson&v=2.7.2&e=jar), +[Redisson node 2.7.2](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=2.7.2&e=jar) ### Supported by From 8f241f597f0664db2ebc7d0569118081264e5d78 Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Thu, 22 Dec 2016 17:52:33 +0300 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b6d706c89..f01263216 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Redis 2.8+ compatible. | 3.2.2 | 1.8+ | 19.12.2016 | | 2.7.2 | 1.6+ | 19.12.2016 | -__NOTE__: Both version lines have same features except `CompletionStage` interface support added in 3.x.x +__NOTE__: Both version lines have same features except `CompletionStage` interface supported by 3.x.x line Please read [documentation](https://github.com/redisson/redisson/wiki) for more details. Redisson [releases history](https://github.com/redisson/redisson/blob/master/CHANGELOG.md)