mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-09-08 00:00:13 +02:00
chore: prepare Tokio v1.42.0 (#7005)
This commit is contained in:
@@ -56,7 +56,7 @@ Make sure you activated the full features of the tokio crate on Cargo.toml:
|
|||||||
|
|
||||||
```toml
|
```toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tokio = { version = "1.41.1", features = ["full"] }
|
tokio = { version = "1.42.0", features = ["full"] }
|
||||||
```
|
```
|
||||||
Then, on your main.rs:
|
Then, on your main.rs:
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,30 @@
|
|||||||
|
# 1.42.0 (Dec 3rd, 2024)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- io: add `AsyncFd::{try_io, try_io_mut}` ([#6967])
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- io: avoid `ptr->ref->ptr` roundtrip in RegistrationSet ([#6929])
|
||||||
|
- runtime: do not defer `yield_now` inside `block_in_place` ([#6999])
|
||||||
|
|
||||||
|
### Changes
|
||||||
|
|
||||||
|
- io: simplify io readiness logic ([#6966])
|
||||||
|
|
||||||
|
### Documented
|
||||||
|
|
||||||
|
- net: fix docs for `tokio::net::unix::{pid_t, gid_t, uid_t}` ([#6791])
|
||||||
|
- time: fix a typo in `Instant` docs ([#6982])
|
||||||
|
|
||||||
|
[#6791]: https://github.com/tokio-rs/tokio/pull/6791
|
||||||
|
[#6929]: https://github.com/tokio-rs/tokio/pull/6929
|
||||||
|
[#6966]: https://github.com/tokio-rs/tokio/pull/6966
|
||||||
|
[#6967]: https://github.com/tokio-rs/tokio/pull/6967
|
||||||
|
[#6982]: https://github.com/tokio-rs/tokio/pull/6982
|
||||||
|
[#6999]: https://github.com/tokio-rs/tokio/pull/6999
|
||||||
|
|
||||||
# 1.41.1 (Nov 7th, 2024)
|
# 1.41.1 (Nov 7th, 2024)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|||||||
+1
-1
@@ -6,7 +6,7 @@ name = "tokio"
|
|||||||
# - README.md
|
# - README.md
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Create "v1.x.y" git tag.
|
# - Create "v1.x.y" git tag.
|
||||||
version = "1.41.1"
|
version = "1.42.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.70"
|
rust-version = "1.70"
|
||||||
authors = ["Tokio Contributors <[email protected]>"]
|
authors = ["Tokio Contributors <[email protected]>"]
|
||||||
|
|||||||
+1
-1
@@ -56,7 +56,7 @@ Make sure you activated the full features of the tokio crate on Cargo.toml:
|
|||||||
|
|
||||||
```toml
|
```toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tokio = { version = "1.41.1", features = ["full"] }
|
tokio = { version = "1.42.0", features = ["full"] }
|
||||||
```
|
```
|
||||||
Then, on your main.rs:
|
Then, on your main.rs:
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user