Skip to content

Commit 5f3296d

Browse files
authored
chore: prepare Tokio v1.43.0 (#7079)
1 parent cc974a6 commit 5f3296d

File tree

4 files changed

+57
-3
lines changed

4 files changed

+57
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
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.42.0", features = ["full"] }
59+
tokio = { version = "1.43.0", features = ["full"] }
6060
```
6161
Then, on your main.rs:
6262

tokio/CHANGELOG.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,57 @@
1+
# 1.43.0 (Jan 8th, 2025)
2+
3+
### Added
4+
5+
- net: add `UdpSocket::peek` methods ([#7068])
6+
- net: add support for Haiku OS ([#7042])
7+
- process: add `Command::into_std()` ([#7014])
8+
- signal: add `SignalKind::info` on illumos ([#6995])
9+
- signal: add support for realtime signals on illumos ([#7029])
10+
11+
### Fixed
12+
13+
- io: don't call `set_len` before initializing vector in `Blocking` ([#7054])
14+
- macros: suppress `clippy::needless_return` in `#[tokio::main]` ([#6874])
15+
- runtime: fix thread parking on WebAssembly ([#7041])
16+
17+
### Changes
18+
19+
- chore: use unsync loads for `unsync_load` ([#7073])
20+
- io: use `Buf::put_bytes` in `Repeat` read impl ([#7055])
21+
- task: drop the join waker of a task eagerly ([#6986])
22+
23+
### Changes to unstable APIs
24+
25+
- metrics: improve flexibility of H2Histogram Configuration ([#6963])
26+
- taskdump: add accessor methods for backtrace ([#6975])
27+
28+
### Documented
29+
30+
- io: clarify `ReadBuf::uninit` allows initialized buffers as well ([#7053])
31+
- net: fix ambiguity in `TcpStream::try_write_vectored` docs ([#7067])
32+
- runtime: fix `LocalRuntime` doc links ([#7074])
33+
- sync: extend documentation for `watch::Receiver::wait_for` ([#7038])
34+
- sync: fix typos in `OnceCell` docs ([#7047])
35+
36+
[#6874]: https://github.com/tokio-rs/tokio/pull/6874
37+
[#6963]: https://github.com/tokio-rs/tokio/pull/6963
38+
[#6975]: https://github.com/tokio-rs/tokio/pull/6975
39+
[#6986]: https://github.com/tokio-rs/tokio/pull/6986
40+
[#6995]: https://github.com/tokio-rs/tokio/pull/6995
41+
[#7014]: https://github.com/tokio-rs/tokio/pull/7014
42+
[#7029]: https://github.com/tokio-rs/tokio/pull/7029
43+
[#7038]: https://github.com/tokio-rs/tokio/pull/7038
44+
[#7041]: https://github.com/tokio-rs/tokio/pull/7041
45+
[#7042]: https://github.com/tokio-rs/tokio/pull/7042
46+
[#7047]: https://github.com/tokio-rs/tokio/pull/7047
47+
[#7053]: https://github.com/tokio-rs/tokio/pull/7053
48+
[#7054]: https://github.com/tokio-rs/tokio/pull/7054
49+
[#7055]: https://github.com/tokio-rs/tokio/pull/7055
50+
[#7067]: https://github.com/tokio-rs/tokio/pull/7067
51+
[#7068]: https://github.com/tokio-rs/tokio/pull/7068
52+
[#7073]: https://github.com/tokio-rs/tokio/pull/7073
53+
[#7074]: https://github.com/tokio-rs/tokio/pull/7074
54+
155
# 1.42.0 (Dec 3rd, 2024)
256

357
### Added

tokio/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.42.0"
9+
version = "1.43.0"
1010
edition = "2021"
1111
rust-version = "1.70"
1212
authors = ["Tokio Contributors <[email protected]>"]

tokio/README.md

Lines changed: 1 addition & 1 deletion
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.42.0", features = ["full"] }
59+
tokio = { version = "1.43.0", features = ["full"] }
6060
```
6161
Then, on your main.rs:
6262

0 commit comments

Comments
 (0)