Skip to content

Commit e126f6c

Browse files
committed
Bump patch version.
1 parent 27a0942 commit e126f6c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

lib/async/redis/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55

66
module Async
77
module Redis
8-
VERSION = "0.11.0"
8+
VERSION = "0.11.1"
99
end
1010
end

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Please see the [project documentation](https://socketry.github.io/async-redis/)
1818

1919
Please see the [project releases](https://socketry.github.io/async-redis/releases/index) for all releases.
2020

21-
### Unreleased
21+
### v0.11.1
2222

2323
- Correctly pass `@options` to `Async::Redis::Client` instances created by `Async::Redis::ClusterClient`.
2424

releases.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Releases
22

3-
## Unreleased
3+
## v0.11.1
44

55
- Correctly pass `@options` to `Async::Redis::Client` instances created by `Async::Redis::ClusterClient`.
66

@@ -10,7 +10,7 @@
1010

1111
`Async::Redis::ClusterClient` is a new class that provides a high-level interface to a Redis Cluster. Due to the way clustering works, it does not provide the same interface as the `Async::Redis::Client` class. Instead, you must request an appropriate client for the key you are working with.
1212

13-
```ruby
13+
``` ruby
1414
endpoints = [
1515
Async::Redis::Endpoint.parse("redis://redis-a"),
1616
Async::Redis::Endpoint.parse("redis://redis-b"),
@@ -28,7 +28,7 @@ end
2828

2929
The previous implementation `Async::Redis::SentinelsClient` has been replaced with `Async::Redis::SentinelClient`. This new class uses `Async::Redis::Endpoint` objects to represent the sentinels and the master.
3030

31-
```ruby
31+
``` ruby
3232
sentinels = [
3333
Async::Redis::Endpoint.parse("redis://redis-sentinel-a"),
3434
Async::Redis::Endpoint.parse("redis://redis-sentinel-b"),

0 commit comments

Comments
 (0)