chore: prepare Tokio v1.24.2 release

This commit is contained in:
Carl Lerche 2023-01-17 12:26:13 -08:00
parent 3d33610ed2
commit 4f6a95badc
No known key found for this signature in database
GPG Key ID: FC5ADF3A4B2E5977
4 changed files with 13 additions and 3 deletions

View File

@ -56,7 +56,7 @@ Make sure you activated the full features of the tokio crate on Cargo.toml:
```toml
[dependencies]
tokio = { version = "1.24.1", features = ["full"] }
tokio = { version = "1.24.2", features = ["full"] }
```
Then, on your main.rs:

View File

@ -1,3 +1,13 @@
# 1.24.2 (January 17, 2023)
Forward ports 1.18.5 changes.
### Fixed
- io: fix unsoundness in `ReadHalf::unsplit` ([#5375])
[#5375]: https://github.com/tokio-rs/tokio/pull/5375
# 1.24.1 (January 6, 2022)
This release fixes a compilation failure on targets without `AtomicU64` when using rustc older than 1.63. ([#5356])

View File

@ -6,7 +6,7 @@ name = "tokio"
# - README.md
# - Update CHANGELOG.md.
# - Create "v1.x.y" git tag.
version = "1.24.1"
version = "1.24.2"
edition = "2018"
rust-version = "1.49"
authors = ["Tokio Contributors <team@tokio.rs>"]

View File

@ -56,7 +56,7 @@ Make sure you activated the full features of the tokio crate on Cargo.toml:
```toml
[dependencies]
tokio = { version = "1.24.1", features = ["full"] }
tokio = { version = "1.24.2", features = ["full"] }
```
Then, on your main.rs: