Skip to content

Commit bb9d570

Browse files
authored
chore: prepare Tokio v1.42.0 (#7005)
1 parent af9c683 commit bb9d570

File tree

4 files changed

+30
-3
lines changed

4 files changed

+30
-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.41.1", features = ["full"] }
59+
tokio = { version = "1.42.0", features = ["full"] }
6060
```
6161
Then, on your main.rs:
6262

tokio/CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
# 1.42.0 (Dec 3rd, 2024)
2+
3+
### Added
4+
5+
- io: add `AsyncFd::{try_io, try_io_mut}` ([#6967])
6+
7+
### Fixed
8+
9+
- io: avoid `ptr->ref->ptr` roundtrip in RegistrationSet ([#6929])
10+
- runtime: do not defer `yield_now` inside `block_in_place` ([#6999])
11+
12+
### Changes
13+
14+
- io: simplify io readiness logic ([#6966])
15+
16+
### Documented
17+
18+
- net: fix docs for `tokio::net::unix::{pid_t, gid_t, uid_t}` ([#6791])
19+
- time: fix a typo in `Instant` docs ([#6982])
20+
21+
[#6791]: https://github.com/tokio-rs/tokio/pull/6791
22+
[#6929]: https://github.com/tokio-rs/tokio/pull/6929
23+
[#6966]: https://github.com/tokio-rs/tokio/pull/6966
24+
[#6967]: https://github.com/tokio-rs/tokio/pull/6967
25+
[#6982]: https://github.com/tokio-rs/tokio/pull/6982
26+
[#6999]: https://github.com/tokio-rs/tokio/pull/6999
27+
128
# 1.41.1 (Nov 7th, 2024)
229

330
### Fixed

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.41.1"
9+
version = "1.42.0"
1010
edition = "2021"
1111
rust-version = "1.70"
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.41.1", features = ["full"] }
59+
tokio = { version = "1.42.0", features = ["full"] }
6060
```
6161
Then, on your main.rs:
6262

0 commit comments

Comments
 (0)