README.md in redis-4.1.2 vs README.md in redis-4.1.3

- old
+ new

@@ -140,10 +140,11 @@ redis.mget('{key}1', '{key}2') #=> [nil, nil] ``` * The client automatically reconnects after a failover occurred, but the caller is responsible for handling errors while it is happening. +* The client support permanent node failures, and will reroute requests to promoted slaves. * The client supports `MOVED` and `ASK` redirections transparently. ## Storing objects Redis only stores strings as values. If you want to store an object, you @@ -433,9 +434,13 @@ ## Testing This library is tested against recent Ruby and Redis versions. Check [Travis][travis-link] for the exact versions supported. + +## See Also + +- [async-redis](https://github.com/socketry/async-redis) — An [async](https://github.com/socketry/async) compatible Redis client. ## Contributors Several people contributed to redis-rb, but we would like to especially mention Ezra Zygmuntowicz. Ezra introduced the Ruby community to many