Skip to content

Commit dfe252d

Browse files
authored
chore: prepare Tokio v1.24.0 release (#5353)
1 parent 21b233f commit dfe252d

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.23.1", features = ["full"] }
59+
tokio = { version = "1.24.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.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

330
This release forward ports changes from 1.18.4.

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

0 commit comments

Comments
 (0)