Skip to content

Commit 207eaec

Browse files
committed
chore: prepare Tokio v1.38.2 release
1 parent 7b6ccb5 commit 207eaec

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Make sure you activated the full features of the tokio crate on Cargo.toml:
5656

5757
```toml
5858
[dependencies]
59-
tokio = { version = "1.38.1", features = ["full"] }
59+
tokio = { version = "1.38.2", features = ["full"] }
6060
```
6161
Then, on your main.rs:
6262

tokio/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# 1.38.2 (April 2nd, 2025)
2+
3+
This release fixes a soundness issue in the broadcast channel. The channel
4+
accepts values that are `Send` but `!Sync`. Previously, the channel called
5+
`clone()` on these values without synchronizing. This release fixes the channel
6+
by synchronizing calls to `.clone()`.
7+
8+
### Fixed
9+
10+
- sync: synchronize `clone()` call in broadcast channel ([#7232])
11+
12+
[#7232]: https://github.com/tokio-rs/tokio/pull/7232
13+
114
# 1.38.1 (July 16th, 2024)
215

316
This release fixes the bug identified as ([#6682]), which caused timers not

tokio/Cargo.toml

+1-1
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.38.1"
9+
version = "1.38.2"
1010
edition = "2021"
1111
rust-version = "1.63"
1212
authors = ["Tokio Contributors <[email protected]>"]

tokio/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Make sure you activated the full features of the tokio crate on Cargo.toml:
5656

5757
```toml
5858
[dependencies]
59-
tokio = { version = "1.38.1", features = ["full"] }
59+
tokio = { version = "1.38.2", features = ["full"] }
6060
```
6161
Then, on your main.rs:
6262

0 commit comments

Comments
 (0)