Skip to content

Commit e35dc51

Browse files
authored
Release 0.23.0 (redis-rs#824)
1 parent d3016e0 commit e35dc51

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

redis-test/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
<a name="0.2.0"></a>
2+
### 0.2.0 (2023-04-05)
3+
4+
* Track redis 0.23.0 release
5+
16
<a name="0.2.0-beta.1"></a>
27
### 0.2.0-beta.1 (2023-03-28)
38

redis-test/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "redis-test"
3-
version = "0.2.0-beta.1"
3+
version = "0.2.0"
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.23.0-beta.1", path = "../redis" }
13+
redis = { version = "0.23.0", 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.23.0-beta.1", path = "../redis", features = ["aio", "tokio-comp"] }
22+
redis = { version = "0.23.0", path = "../redis", features = ["aio", "tokio-comp"] }
2323
tokio = { version = "1", features = ["rt", "macros", "rt-multi-thread"] }
2424

redis/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
<a name="0.23.0"></a>
2+
### 0.23.0 (2023-04-05)
3+
In addition to *everything mentioned in 0.23.0-beta.1 notes*, this release adds support for Rustls, a long-
4+
sought feature. Thanks to @rharish101 and @LeoRowan for getting this in!
5+
6+
#### Changes
7+
* Update Rustls to v0.21.0 ([#820](https://github.com/redis-rs/redis-rs/pull/820) @rharish101)
8+
* Implement support for Rustls ([#725](https://github.com/redis-rs/redis-rs/pull/725) @rharish101, @LeoRowan)
9+
110
<a name="0.23.0-beta.1"></a>
211
### 0.23.0-beta.1 (2023-03-28)
312

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.23.0-beta.1"
3+
version = "0.23.0"
44
keywords = ["redis", "database"]
55
description = "Redis driver for Rust."
66
homepage = "https://github.com/redis-rs/redis-rs"

0 commit comments

Comments
 (0)