Skip to content

Commit d875691

Browse files
authored
chore: prepare Tokio v1.52.3 (#8130)
1 parent e1aebb0 commit d875691

4 files changed

Lines changed: 12 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Make sure you enable the full features of the tokio crate on Cargo.toml:
6060

6161
```toml
6262
[dependencies]
63-
tokio = { version = "1.52.2", features = ["full"] }
63+
tokio = { version = "1.52.3", features = ["full"] }
6464
```
6565
Then, on your main.rs:
6666

tokio/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# 1.52.3 (May 8th, 2026)
2+
3+
### Fixed
4+
5+
* sync: fix underflow in mpsc channel `len()` ([#8062])
6+
* sync: notify receivers in mpsc `OwnedPermit::release()` method ([#8075])
7+
* sync: require that an `RwLock` has `max_readers != 0` ([#8076])
8+
* sync: return `Empty` from `try_recv()` when mpsc is closed with outstanding permits ([#8074])
9+
110
# 1.52.2 (May 4th, 2026)
211

312
This release reverts the LIFO slot stealing change introduced in 1.51.0

tokio/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name = "tokio"
66
# - README.md
77
# - Update CHANGELOG.md.
88
# - Create "v1.x.y" git tag.
9-
version = "1.52.2"
9+
version = "1.52.3"
1010
edition = "2021"
1111
rust-version = "1.71"
1212
authors = ["Tokio Contributors <team@tokio.rs>"]

tokio/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Make sure you enable the full features of the tokio crate on Cargo.toml:
6060

6161
```toml
6262
[dependencies]
63-
tokio = { version = "1.52.2", features = ["full"] }
63+
tokio = { version = "1.52.3", features = ["full"] }
6464
```
6565
Then, on your main.rs:
6666

0 commit comments

Comments
 (0)