Skip to content

Commit 535d9f4

Browse files
jaymelldjc
authored andcommitted
Increment versions / update CHANGELOGs
1 parent 172531b commit 535d9f4

File tree

5 files changed

+27
-12
lines changed

5 files changed

+27
-12
lines changed

README.md

+8-8
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.0"
17+
redis = "0.22.1"
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.0", features = ["tokio-comp"] }
57+
redis = { version = "0.22.1", features = ["tokio-comp"] }
5858
5959
# if you use async-std
60-
redis = { version = "0.22.0", features = ["async-std-comp"] }
60+
redis = { version = "0.22.1", 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.0", features = ["tls"] }
68+
redis = { version = "0.22.1", features = ["tls"] }
6969
7070
# if you use tokio
71-
redis = { version = "0.22.0", features = ["tokio-native-tls-comp"] }
71+
redis = { version = "0.22.1", features = ["tokio-native-tls-comp"] }
7272
7373
# if you use async-std
74-
redis = { version = "0.22.0", features = ["async-std-tls-comp"] }
74+
redis = { version = "0.22.1", 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.0", features = [ "cluster"] }`
87+
`redis = { version = "0.22.1", 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.0", features = ["json"] }`
110+
`redis = { version = "0.22.1", 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-test/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
<a name="0.1.1"></a>
2+
### 0.1.1 (2022-10-18)
3+
4+
#### Changes
5+
* Add README
6+
* Update LICENSE file / symlink from parent directory
7+
8+
19
<a name="0.1.0"></a>
210
### 0.1.0 (2022-10-05)
311

redis-test/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "redis-test"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
description = "Testing helpers for the `redis` crate"
66
homepage = "https://github.com/redis-rs/redis-rs"
@@ -10,7 +10,7 @@ license = "BSD-3-Clause"
1010
rust-version = "1.59"
1111

1212
[dependencies]
13-
redis = { version = "0.22.0", path = "../redis" }
13+
redis = { version = "0.22.1", path = "../redis" }
1414

1515
bytes = { version = "1", optional = true }
1616
futures = { version = "0.3", optional = true }
@@ -19,6 +19,6 @@ futures = { version = "0.3", optional = true }
1919
aio = ["futures", "redis/aio"]
2020

2121
[dev-dependencies]
22-
redis = { version = "0.22.0", path = "../redis", features = ["aio", "tokio-comp"] }
22+
redis = { version = "0.22.1", path = "../redis", features = ["aio", "tokio-comp"] }
2323
tokio = { version = "1", features = ["rt", "macros", "rt-multi-thread"] }
2424

redis/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
<a name="0.22.1"></a>
2+
### 0.22.1 (2022-10-18)
3+
4+
#### Changes
5+
* Add README attribute to Cargo.toml
6+
* Update LICENSE file / symlink from parent directory
7+
18
<a name="0.22.0"></a>
29
### 0.22.0 (2022-10-05)
310

redis/Cargo.toml

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

0 commit comments

Comments
 (0)