File tree 4 files changed +30
-3
lines changed
4 files changed +30
-3
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ Make sure you activated the full features of the tokio crate on Cargo.toml:
56
56
57
57
``` toml
58
58
[dependencies ]
59
- tokio = { version = " 1.41.1 " , features = [" full" ] }
59
+ tokio = { version = " 1.42.0 " , features = [" full" ] }
60
60
```
61
61
Then, on your main.rs:
62
62
Original file line number Diff line number Diff line change
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
+
1
28
# 1.41.1 (Nov 7th, 2024)
2
29
3
30
### Fixed
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ name = "tokio"
6
6
# - README.md
7
7
# - Update CHANGELOG.md.
8
8
# - Create "v1.x.y" git tag.
9
- version = " 1.41.1 "
9
+ version = " 1.42.0 "
10
10
edition = " 2021"
11
11
rust-version = " 1.70"
12
12
authors = [
" Tokio Contributors <[email protected] >" ]
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ Make sure you activated the full features of the tokio crate on Cargo.toml:
56
56
57
57
``` toml
58
58
[dependencies ]
59
- tokio = { version = " 1.41.1 " , features = [" full" ] }
59
+ tokio = { version = " 1.42.0 " , features = [" full" ] }
60
60
```
61
61
Then, on your main.rs:
62
62
You can’t perform that action at this time.
0 commit comments