chore: prepare Tokio v1.39.1 (#6716)

This commit is contained in:
Alice Ryhl 2024-07-23 18:28:04 +02:00 committed by GitHub
parent 47210a8e6e
commit f8fe0ffb23
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 12 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.39.0", features = ["full"] }
tokio = { version = "1.39.1", features = ["full"] }
```
Then, on your main.rs:

View File

@ -1,5 +1,14 @@
# 1.39.1 (July 23rd, 2024)
This release reverts "time: avoid traversing entries in the time wheel twice"
because it contains a bug. ([#6715])
[#6715]: https://github.com/tokio-rs/tokio/pull/6715
# 1.39.0 (July 23rd, 2024)
Yanked. Please use 1.39.1 instead.
- This release bumps the MSRV to 1.70. ([#6645])
- This release upgrades to mio v1. ([#6635])
- This release upgrades to windows-sys v0.52 ([#6154])

View File

@ -6,7 +6,7 @@ name = "tokio"
# - README.md
# - Update CHANGELOG.md.
# - Create "v1.x.y" git tag.
version = "1.39.0"
version = "1.39.1"
edition = "2021"
rust-version = "1.70"
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.39.0", features = ["full"] }
tokio = { version = "1.39.1", features = ["full"] }
```
Then, on your main.rs: