Merge remote-tracking branch 'mrniko/master'

pull/282/head
jackygurui 10 years ago
commit e31ac9c60e

@ -61,6 +61,14 @@ Recent Releases
================================
####Please Note: trunk is current development branch.
####17-Sep-2015 - version 2.1.3 released
Feature - Ability to define `Codec` for each object
Feature - `refreshConnectionAfterFails` setting added
Feature - [AWS Elasticache](https://aws.amazon.com/elasticache/) support via `Config.useElasticacheServers` method (thanks to Steve Ungerer)
Feature - `RScoredSortedSet` and `RLexSortedSet` added. Both uses native Redis Sorted Set commands. `RLexSortedSet`s stores only String objects and work with ZLEX-commands
Fixed - missed AUTH during channel reconnection
Fixed - resubscribe to subscribed topics during channel reconnection
####05-Sep-2015 - version 2.1.2 released
Fixed - possible NPE during channel reconnection
Fixed - executeAsync freezes in cluster mode
@ -250,12 +258,12 @@ Include the following to your dependency list:
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson</artifactId>
<version>2.1.2</version>
<version>2.1.3</version>
</dependency>
### Gradle
compile 'org.redisson:redisson:2.1.2'
compile 'org.redisson:redisson:2.1.3'
### Supported by

@ -3,7 +3,7 @@
<groupId>org.redisson</groupId>
<artifactId>redisson</artifactId>
<version>2.1.3-SNAPSHOT</version>
<version>2.1.4-SNAPSHOT</version>
<packaging>bundle</packaging>
<name>Redisson</name>

Loading…
Cancel
Save