README.md in redis-3.0.1 vs README.md in redis-3.0.2
- old
+ new
@@ -161,11 +161,11 @@
`LRANGE`, `SMEMBERS`, `ZRANGE`, etc.) and/or use big pipelines.
In your Gemfile, include hiredis:
```ruby
-gem "redis", "~> 3.0.0.rc2"
+gem "redis", "~> 3.0.1"
gem "hiredis", "~> 0.4.5"
```
When instantiating the client object, specify hiredis:
@@ -184,15 +184,15 @@
[em-synchrony]: https://github.com/igrigorik/em-synchrony
In your Gemfile, include em-synchrony and hiredis:
```ruby
-gem "redis", "~> 3.0.0.rc2"
+gem "redis", "~> 3.0.1"
gem "hiredis", "~> 0.4.5"
gem "em-synchrony"
```
-When instantiating the client object, specify hiredis:
+When instantiating the client object, specify synchrony:
```ruby
redis = Redis.new(:driver => :synchrony)
```