diff --git a/CHANGELOG.md b/CHANGELOG.md
index bbdf4b460..ab7b934b8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,27 @@ Redisson Releases History
Сonsider __[Redisson PRO](https://redisson.pro)__ version for advanced features and support by SLA.
+### 02-Sep-2020 - 3.13.4 released
+Feature - batch support for `revRank`, `getScore`, `addAndGetRevRank` methods added to RScoredSortedSet object (thanks to @johnou)
+Feature - `RRateLimiter.setRate` method added (thanks to @AbhishekChandrasekaran)
+Feature - `RObject.getIdleTime()` method added
+Feature - `RKeys.getKeysWithLimit()` method added
+
+Fixed - `RRateLimiter.availablePermits()` method throws exception (regression since 3.13.3)
+Fixed - compatibility with Spring Data Redis 2.3.3
+Fixed - `UnsupportedOperationException` is thrown if Spring Data Redis connection executed in pipelined mode
+Fixed - multiple Tomcat requests share different instances stored in the same session in `readMode=REDIS`
+Fixed - Spring Data Redis can't be used with proxied RedissonClient instance
+Fixed - Classloading issues when `MarshallingCodec` used in Tomcat
+Fixed - Redis cluster slot calculation doesn't work properly if brace isn't closed (thanks to @dengliming)
+Fixed - `RBloomFilter` rename method doesn't rename config object (thanks to @dengliming)
+Fixed - `slf4j-simple` dependency excluded from redisson-all
+Fixed - `JCache.removeAsync` method throws NPE if operation fails
+Fixed - all cached Lua scripts are executed on Redis master nodes only
+Fixed - `XPENDING` command causes syntax error in redisson-spring-data-23
+Fixed - `CommandPubSubDecoder` throws NPE
+Fixed - `MasterSlaveConnectionManager` allocates superfluous 113Kb of memory for non-cluster Redis setup
+
### 05-Aug-2020 - 3.13.3 released
Feature - BITFIELD command support added to `RBitSet` object
diff --git a/README.md b/README.md
index 2ad3e14fc..c6f159c5b 100644
--- a/README.md
+++ b/README.md
@@ -99,14 +99,14 @@ Used by
org.redisson
redisson
- 3.13.3
+ 3.13.4
#### Gradle
- compile 'org.redisson:redisson:3.13.3'
+ compile 'org.redisson:redisson:3.13.4'
#### SBT
- libraryDependencies += "org.redisson" % "redisson" % "3.13.3"
+ libraryDependencies += "org.redisson" % "redisson" % "3.13.4"
#### Java
@@ -164,8 +164,8 @@ Consider __[Redisson PRO](https://redisson.pro)__ version for advanced features
## Downloads
-[Redisson 3.13.3](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson&v=3.13.3&e=jar),
-[Redisson node 3.13.3](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=3.13.3&e=jar)
+[Redisson 3.13.4](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson&v=3.13.4&e=jar),
+[Redisson node 3.13.4](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=3.13.4&e=jar)
## FAQs
diff --git a/redisson-all/README.md b/redisson-all/README.md
index 1274f4bb6..537b4be25 100644
--- a/redisson-all/README.md
+++ b/redisson-all/README.md
@@ -2,6 +2,6 @@
Redisson offers ability to run as standalone node and participate in distributed computing. Such Nodes are used to run [MapReduce](./9.-distributed-services/#95-distributed-mapreduce-service), [ExecutorService](./9.-distributed-services#93-executor-service), [ScheduledExecutorService](https://github.com/mrniko/redisson/wiki/9.-distributed-services#94-scheduled-executor-service) tasks or [RemoteService](./9.-distributed-services#91-remote-service) services. All tasks are kept in Redis until their execution moment.
-Packaged as a single jar and could be [downloaded](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=3.13.3&e=jar).
+Packaged as a single jar and could be [downloaded](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=3.13.4&e=jar).
[Documentation](https://github.com/mrniko/redisson/wiki/12.-Standalone-node) for Redisson node.
diff --git a/redisson-hibernate/README.md b/redisson-hibernate/README.md
index 5d1e2704e..e69200bb2 100644
--- a/redisson-hibernate/README.md
+++ b/redisson-hibernate/README.md
@@ -37,7 +37,7 @@ Maven
redisson-hibernate-52
redisson-hibernate-53
- 3.13.3
+ 3.13.4
```
@@ -45,13 +45,13 @@ Gradle
```groovy
// for Hibernate v4.x
- compile 'org.redisson:redisson-hibernate-4:3.13.3'
+ compile 'org.redisson:redisson-hibernate-4:3.13.4'
// for Hibernate v5.0.x - v5.1.x
- compile 'org.redisson:redisson-hibernate-5:3.13.3'
+ compile 'org.redisson:redisson-hibernate-5:3.13.4'
// for Hibernate v5.2.x
- compile 'org.redisson:redisson-hibernate-52:3.13.3'
+ compile 'org.redisson:redisson-hibernate-52:3.13.4'
// for Hibernate v5.3.3+ - v5.4.x
- compile 'org.redisson:redisson-hibernate-53:3.13.3'
+ compile 'org.redisson:redisson-hibernate-53:3.13.4'
```
### 2. Specify hibernate cache settings
diff --git a/redisson-mybatis/README.md b/redisson-mybatis/README.md
index 6e0c68404..e2b1ca7bc 100644
--- a/redisson-mybatis/README.md
+++ b/redisson-mybatis/README.md
@@ -29,14 +29,14 @@ Maven
org.redisson
redisson-mybatis
- 3.13.3
+ 3.13.4
```
Gradle
```groovy
- compile 'org.redisson:redisson-mybatis:3.13.3'
+ compile 'org.redisson:redisson-mybatis:3.13.4'
```
### 2. Specify MyBatis cache settings
diff --git a/redisson-spring-boot-starter/README.md b/redisson-spring-boot-starter/README.md
index 2d8f993ce..e9030357f 100644
--- a/redisson-spring-boot-starter/README.md
+++ b/redisson-spring-boot-starter/README.md
@@ -16,14 +16,14 @@ Maven
org.redisson
redisson-spring-boot-starter
- 3.13.3
+ 3.13.4
```
Gradle
```groovy
- compile 'org.redisson:redisson-spring-boot-starter:3.13.3'
+ compile 'org.redisson:redisson-spring-boot-starter:3.13.4'
```
diff --git a/redisson-spring-data/README.md b/redisson-spring-data/README.md
index 8e999344d..191b1ca71 100644
--- a/redisson-spring-data/README.md
+++ b/redisson-spring-data/README.md
@@ -29,7 +29,7 @@ Maven
redisson-spring-data-22
redisson-spring-data-23
- 3.13.3
+ 3.13.4
```
@@ -37,19 +37,19 @@ Gradle
```groovy
// for Spring Data Redis v.1.6.x
- compile 'org.redisson:redisson-spring-data-16:3.13.3'
+ compile 'org.redisson:redisson-spring-data-16:3.13.4'
// for Spring Data Redis v.1.7.x
- compile 'org.redisson:redisson-spring-data-17:3.13.3'
+ compile 'org.redisson:redisson-spring-data-17:3.13.4'
// for Spring Data Redis v.1.8.x
- compile 'org.redisson:redisson-spring-data-18:3.13.3'
+ compile 'org.redisson:redisson-spring-data-18:3.13.4'
// for Spring Data Redis v.2.0.x
- compile 'org.redisson:redisson-spring-data-20:3.13.3'
+ compile 'org.redisson:redisson-spring-data-20:3.13.4'
// for Spring Data Redis v.2.1.x
- compile 'org.redisson:redisson-spring-data-21:3.13.3'
+ compile 'org.redisson:redisson-spring-data-21:3.13.4'
// for Spring Data Redis v.2.2.x
- compile 'org.redisson:redisson-spring-data-22:3.13.3'
+ compile 'org.redisson:redisson-spring-data-22:3.13.4'
// for Spring Data Redis v.2.3.x
- compile 'org.redisson:redisson-spring-data-23:3.13.3'
+ compile 'org.redisson:redisson-spring-data-23:3.13.4'
```
### 2. Register `RedissonConnectionFactory` in Spring context