Skip to content

Commit 14c17fc

Browse files
authored
chore: prepare Tokio v1.38.0 (#6601)
1 parent 65cbf73 commit 14c17fc

File tree

4 files changed

+103
-3
lines changed

4 files changed

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

tokio/CHANGELOG.md

+100
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,103 @@
1+
# 1.38.0 (May 30th, 2024)
2+
3+
This release marks the beginning of stabilization for runtime metrics. It
4+
stabilizes `RuntimeMetrics::worker_count`. Future releases will continue to
5+
stabilize more metrics.
6+
7+
### Added
8+
9+
- fs: add `File::create_new` ([#6573])
10+
- io: add `copy_bidirectional_with_sizes` ([#6500])
11+
- io: implement `AsyncBufRead` for `Join` ([#6449])
12+
- net: add Apple visionOS support ([#6465])
13+
- net: implement `Clone` for `NamedPipeInfo` ([#6586])
14+
- net: support QNX OS ([#6421])
15+
- sync: add `Notify::notify_last` ([#6520])
16+
- sync: add `mpsc::Receiver::{capacity,max_capacity}` ([#6511])
17+
- sync: add `split` method to the semaphore permit ([#6472], [#6478])
18+
- task: add `tokio::task::join_set::Builder::spawn_blocking` ([#6578])
19+
- wasm: support rt-multi-thread with wasm32-wasi-preview1-threads ([#6510])
20+
21+
### Changed
22+
23+
- macros: make `#[tokio::test]` append `#[test]` at the end of the attribute list ([#6497])
24+
- metrics: fix `blocking_threads` count ([#6551])
25+
- metrics: stabilize `RuntimeMetrics::worker_count` ([#6556])
26+
- runtime: move task out of the `lifo_slot` in `block_in_place` ([#6596])
27+
- runtime: panic if `global_queue_interval` is zero ([#6445])
28+
- sync: always drop message in destructor for oneshot receiver ([#6558])
29+
- sync: instrument `Semaphore` for task dumps ([#6499])
30+
- sync: use FIFO ordering when waking batches of wakers ([#6521])
31+
- task: make `LocalKey::get` work with Clone types ([#6433])
32+
- tests: update nix and mio-aio dev-dependencies ([#6552])
33+
- time: clean up implementation ([#6517])
34+
- time: lazily init timers on first poll ([#6512])
35+
- time: remove the `true_when` field in `TimerShared` ([#6563])
36+
- time: use sharding for timer implementation ([#6534])
37+
38+
### Fixed
39+
40+
- taskdump: allow building taskdump docs on non-unix machines ([#6564])
41+
- time: check for overflow in `Interval::poll_tick` ([#6487])
42+
- sync: fix incorrect `is_empty` on mpsc block boundaries ([#6603])
43+
44+
### Documented
45+
46+
- fs: rewrite file system docs ([#6467])
47+
- io: fix `stdin` documentation ([#6581])
48+
- io: fix obsolete reference in `ReadHalf::unsplit()` documentation ([#6498])
49+
- macros: render more comprehensible documentation for `select!` ([#6468])
50+
- net: add missing types to module docs ([#6482])
51+
- net: fix misleading `NamedPipeServer` example ([#6590])
52+
- sync: add examples for `SemaphorePermit`, `OwnedSemaphorePermit` ([#6477])
53+
- sync: document that `Barrier::wait` is not cancel safe ([#6494])
54+
- sync: explain relation between `watch::Sender::{subscribe,closed}` ([#6490])
55+
- task: clarify that you can't abort `spawn_blocking` tasks ([#6571])
56+
- task: fix a typo in doc of `LocalSet::run_until` ([#6599])
57+
- time: fix test-util requirement for pause and resume in docs ([#6503])
58+
59+
[#6421]: https://github.com/tokio-rs/tokio/pull/6421
60+
[#6433]: https://github.com/tokio-rs/tokio/pull/6433
61+
[#6445]: https://github.com/tokio-rs/tokio/pull/6445
62+
[#6449]: https://github.com/tokio-rs/tokio/pull/6449
63+
[#6465]: https://github.com/tokio-rs/tokio/pull/6465
64+
[#6467]: https://github.com/tokio-rs/tokio/pull/6467
65+
[#6468]: https://github.com/tokio-rs/tokio/pull/6468
66+
[#6472]: https://github.com/tokio-rs/tokio/pull/6472
67+
[#6477]: https://github.com/tokio-rs/tokio/pull/6477
68+
[#6478]: https://github.com/tokio-rs/tokio/pull/6478
69+
[#6482]: https://github.com/tokio-rs/tokio/pull/6482
70+
[#6487]: https://github.com/tokio-rs/tokio/pull/6487
71+
[#6490]: https://github.com/tokio-rs/tokio/pull/6490
72+
[#6494]: https://github.com/tokio-rs/tokio/pull/6494
73+
[#6497]: https://github.com/tokio-rs/tokio/pull/6497
74+
[#6498]: https://github.com/tokio-rs/tokio/pull/6498
75+
[#6499]: https://github.com/tokio-rs/tokio/pull/6499
76+
[#6500]: https://github.com/tokio-rs/tokio/pull/6500
77+
[#6503]: https://github.com/tokio-rs/tokio/pull/6503
78+
[#6510]: https://github.com/tokio-rs/tokio/pull/6510
79+
[#6511]: https://github.com/tokio-rs/tokio/pull/6511
80+
[#6512]: https://github.com/tokio-rs/tokio/pull/6512
81+
[#6517]: https://github.com/tokio-rs/tokio/pull/6517
82+
[#6520]: https://github.com/tokio-rs/tokio/pull/6520
83+
[#6521]: https://github.com/tokio-rs/tokio/pull/6521
84+
[#6534]: https://github.com/tokio-rs/tokio/pull/6534
85+
[#6551]: https://github.com/tokio-rs/tokio/pull/6551
86+
[#6552]: https://github.com/tokio-rs/tokio/pull/6552
87+
[#6556]: https://github.com/tokio-rs/tokio/pull/6556
88+
[#6558]: https://github.com/tokio-rs/tokio/pull/6558
89+
[#6563]: https://github.com/tokio-rs/tokio/pull/6563
90+
[#6564]: https://github.com/tokio-rs/tokio/pull/6564
91+
[#6571]: https://github.com/tokio-rs/tokio/pull/6571
92+
[#6573]: https://github.com/tokio-rs/tokio/pull/6573
93+
[#6578]: https://github.com/tokio-rs/tokio/pull/6578
94+
[#6581]: https://github.com/tokio-rs/tokio/pull/6581
95+
[#6586]: https://github.com/tokio-rs/tokio/pull/6586
96+
[#6590]: https://github.com/tokio-rs/tokio/pull/6590
97+
[#6596]: https://github.com/tokio-rs/tokio/pull/6596
98+
[#6599]: https://github.com/tokio-rs/tokio/pull/6599
99+
[#6603]: https://github.com/tokio-rs/tokio/pull/6603
100+
1101
# 1.37.0 (March 28th, 2024)
2102

3103
### Added

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

0 commit comments

Comments
 (0)