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.23.1 " , features = [" full" ] }
59
+ tokio = { version = " 1.24.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.24.0 (January 5, 2022)
2
+
3
+ ### Fixed
4
+ - rt: improve native ` AtomicU64 ` support detection ([ #5284 ] )
5
+
6
+ ### Added
7
+ - rt: add configuration option for max number of I/O events polled from the OS
8
+ per tick ([ #5186 ] )
9
+ - rt: add an environment variable for configuring the default number of worker
10
+ threads per runtime instance ([ #4250 ] )
11
+
12
+ ### Changed
13
+ - sync: reduce MPSC channel stack usage ([ #5294 ] )
14
+ - io: reduce lock contention in I/O operations ([ #5300 ] )
15
+ - fs: speed up ` read_dir() ` by chunking operations ([ #5309 ] )
16
+ - rt: use internal ` ThreadId ` implementation ([ #5329 ] )
17
+ - test: don't auto-advance time when a ` spawn_blocking ` task is running ([ #5115 ] )
18
+
19
+ [ #5186 ] : https://github.com/tokio-rs/tokio/pull/5186
20
+ [ #5294 ] : https://github.com/tokio-rs/tokio/pull/5294
21
+ [ #5284 ] : https://github.com/tokio-rs/tokio/pull/5284
22
+ [ #4250 ] : https://github.com/tokio-rs/tokio/pull/4250
23
+ [ #5300 ] : https://github.com/tokio-rs/tokio/pull/5300
24
+ [ #5329 ] : https://github.com/tokio-rs/tokio/pull/5329
25
+ [ #5115 ] : https://github.com/tokio-rs/tokio/pull/5115
26
+ [ #5309 ] : https://github.com/tokio-rs/tokio/pull/5309
27
+
1
28
# 1.23.1 (January 4, 2022)
2
29
3
30
This release forward ports changes from 1.18.4.
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.23.1 "
9
+ version = " 1.24.0 "
10
10
edition = " 2018"
11
11
rust-version = " 1.49"
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.23.1 " , features = [" full" ] }
59
+ tokio = { version = " 1.24.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