Skip to content

Commit adaeec0

Browse files
robjtedejaymell
authored andcommitted
Update changelog for 0.22.3
1 parent b130b18 commit adaeec0

File tree

3 files changed

+16
-9
lines changed

3 files changed

+16
-9
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The crate is called `redis` and you can depend on it via cargo:
1414

1515
```ini
1616
[dependencies]
17-
redis = "0.22.2"
17+
redis = "0.22.3"
1818
```
1919

2020
Documentation on the library can be found at
@@ -54,24 +54,24 @@ To enable asynchronous clients a feature for the underlying feature need to be a
5454

5555
```
5656
# if you use tokio
57-
redis = { version = "0.22.2", features = ["tokio-comp"] }
57+
redis = { version = "0.22.3", features = ["tokio-comp"] }
5858
5959
# if you use async-std
60-
redis = { version = "0.22.2", features = ["async-std-comp"] }
60+
redis = { version = "0.22.3", features = ["async-std-comp"] }
6161
```
6262

6363
## TLS Support
6464

6565
To enable TLS support, you need to use the relevant feature entry in your Cargo.toml.
6666

6767
```
68-
redis = { version = "0.22.2", features = ["tls"] }
68+
redis = { version = "0.22.3", features = ["tls"] }
6969
7070
# if you use tokio
71-
redis = { version = "0.22.2", features = ["tokio-native-tls-comp"] }
71+
redis = { version = "0.22.3", features = ["tokio-native-tls-comp"] }
7272
7373
# if you use async-std
74-
redis = { version = "0.22.2", features = ["async-std-tls-comp"] }
74+
redis = { version = "0.22.3", features = ["async-std-tls-comp"] }
7575
```
7676

7777
then you should be able to connect to a redis instance using the `rediss://` URL scheme:
@@ -84,7 +84,7 @@ let client = redis::Client::open("rediss://127.0.0.1/")?;
8484

8585
Cluster mode can be used by specifying "cluster" as a features entry in your Cargo.toml.
8686

87-
`redis = { version = "0.22.2", features = [ "cluster"] }`
87+
`redis = { version = "0.22.3", features = [ "cluster"] }`
8888

8989
Then you can simply use the `ClusterClient` which accepts a list of available nodes.
9090

@@ -107,7 +107,7 @@ fn fetch_an_integer() -> String {
107107

108108
Support for the RedisJSON Module can be enabled by specifying "json" as a feature in your Cargo.toml.
109109

110-
`redis = { version = "0.22.2", features = ["json"] }`
110+
`redis = { version = "0.22.3", features = ["json"] }`
111111

112112
Then you can simply import the `JsonCommands` trait which will add the `json` commands to all Redis Connections (not to be confused with just `Commands` which only adds the default commands)
113113

redis/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
<a name="0.22.3"></a>
2+
### 0.22.3 (2023-01-23)
3+
4+
#### Changes
5+
* Restore inherent `ClusterConnection::check_connection()` method ([#758](https://github.com/redis-rs/redis-rs/pull/758) @robjtede)
6+
7+
18
<a name="0.22.2"></a>
29
### 0.22.2 (2023-01-07)
310

redis/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "redis"
3-
version = "0.22.2"
3+
version = "0.22.3"
44
keywords = ["redis", "database"]
55
description = "Redis driver for Rust."
66
homepage = "https://github.com/redis-rs/redis-rs"

0 commit comments

Comments
 (0)