Merge branch 'tokio-1.24.x' into master

This commit is contained in:
Carl Lerche
2023-01-17 12:59:09 -08:00
4 changed files with 13 additions and 3 deletions
+1 -1
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:
+10
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])
+1 -1
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 <[email protected]>"]
+1 -1
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: