Skip to content

Commit a59b2f0

Browse files
committed
chore: prepare Tokio v1.23 release
- net: fix Windows named pipe connect ([#5208]) - io: support vectored writes for `ChildStdin` ([#5216]) - io: fix `async fn ready()` false positive for OS-specific events ([#5231]) ### Changed - runtime: `yield_now` defers task until after driver poll ([#5223]) - runtime: reduce amount of codegen needed per spawned task ([#5213]) - windows: replace `winapi` dependency with `windows-sys` ([#5204]) [#5208]: #5208 [#5216]: #5216 [#5213]: #5213 [#5204]: #5204 [#5223]: #5223 [#5231]: #5231
1 parent a1316cd commit a59b2f0

File tree

4 files changed

+23
-3
lines changed

4 files changed

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

tokio/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
# 1.23.0 (December 5, 2022)
2+
3+
### Fixed
4+
5+
- net: fix Windows named pipe connect ([#5208])
6+
- io: support vectored writes for `ChildStdin` ([#5216])
7+
- io: fix `async fn ready()` false positive for OS-specific events ([#5231])
8+
9+
### Changed
10+
- runtime: `yield_now` defers task until after driver poll ([#5223])
11+
- runtime: reduce amount of codegen needed per spawned task ([#5213])
12+
- windows: replace `winapi` dependency with `windows-sys` ([#5204])
13+
14+
[#5208]: https://github.com/tokio-rs/tokio/pull/5208
15+
[#5216]: https://github.com/tokio-rs/tokio/pull/5216
16+
[#5213]: https://github.com/tokio-rs/tokio/pull/5213
17+
[#5204]: https://github.com/tokio-rs/tokio/pull/5204
18+
[#5223]: https://github.com/tokio-rs/tokio/pull/5223
19+
[#5231]: https://github.com/tokio-rs/tokio/pull/5231
20+
121
# 1.22.0 (November 17, 2022)
222

323
### 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.22.0"
9+
version = "1.23.0"
1010
edition = "2018"
1111
rust-version = "1.49"
1212
authors = ["Tokio Contributors <team@tokio.rs>"]

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

0 commit comments

Comments
 (0)