File tree Expand file tree Collapse file tree 4 files changed +30
-3
lines changed
Expand file tree Collapse file tree 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:
5656
5757``` toml
5858[dependencies ]
59- tokio = { version = " 1.23.1 " , features = [" full" ] }
59+ tokio = { version = " 1.24.0 " , features = [" full" ] }
6060```
6161Then, on your main.rs:
6262
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+
128# 1.23.1 (January 4, 2022)
229
330This release forward ports changes from 1.18.4.
Original file line number Diff line number Diff 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.23.1 "
9+ version = " 1.24.0 "
1010edition = " 2018"
1111rust-version = " 1.49"
1212authors = [" Tokio Contributors <team@tokio.rs>" ]
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:
5656
5757``` toml
5858[dependencies ]
59- tokio = { version = " 1.23.1 " , features = [" full" ] }
59+ tokio = { version = " 1.24.0 " , features = [" full" ] }
6060```
6161Then, on your main.rs:
6262
You can’t perform that action at this time.
0 commit comments