File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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```
6565Then, on your main.rs:
6666
Original file line number Diff line number Diff line change 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
312This release reverts the LIFO slot stealing change introduced in 1.51.0
Original file line number Diff line number Diff 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 "
1010edition = " 2021"
1111rust-version = " 1.71"
1212authors = [" Tokio Contributors <team@tokio.rs>" ]
Original file line number Diff line number Diff 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```
6565Then, on your main.rs:
6666
You can’t perform that action at this time.
0 commit comments