Skip to content

Commit 49eb26f

Browse files
authored
chore: prepare Tokio v1.34.0 release (#6138)
This also includes: - tokio-macros v2.2.0
1 parent 19d96c0 commit 49eb26f

File tree

6 files changed

+40
-6
lines changed

6 files changed

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

tokio-macros/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 2.2.0 (November 19th, 2023)
2+
3+
### Changed
4+
5+
- use `::core` qualified imports instead of `::std` inside `tokio::test` macro ([#5973])
6+
7+
[#5973]: https://github.com/tokio-rs/tokio/pull/5973
8+
19
# 2.1.0 (April 25th, 2023)
210

311
- macros: fix typo in `#[tokio::test]` docs ([#5636])

tokio-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name = "tokio-macros"
44
# - Remove path dependencies
55
# - Update CHANGELOG.md.
66
# - Create "tokio-macros-1.x.y" git tag.
7-
version = "2.1.0"
7+
version = "2.2.0"
88
edition = "2021"
99
rust-version = "1.63"
1010
authors = ["Tokio Contributors <[email protected]>"]

tokio/CHANGELOG.md

+27-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,30 @@
1-
[comment]: <> (Include tokio-macros changes in next release.)
1+
# 1.34.0 (November 19th, 2023)
2+
3+
### Fixed
4+
5+
- io: allow `clear_readiness` after io driver shutdown ([#6067])
6+
- io: fix integer overflow in `take` ([#6080])
7+
- io: fix I/O resource hang ([#6134])
8+
- sync: fix `broadcast::channel` link ([#6100])
9+
10+
### Changed
11+
12+
- macros: use `::core` qualified imports instead of `::std` inside `tokio::test` macro ([#5973])
13+
14+
### Added
15+
16+
- fs: update cfg attr in `fs::read_dir` to include `aix` ([#6075])
17+
- sync: add `mpsc::Receiver::recv_many` ([#6010])
18+
- tokio: added vita target support ([#6094])
19+
20+
[#5973]: https://github.com/tokio-rs/tokio/pull/5973
21+
[#6067]: https://github.com/tokio-rs/tokio/pull/6067
22+
[#6080]: https://github.com/tokio-rs/tokio/pull/6080
23+
[#6134]: https://github.com/tokio-rs/tokio/pull/6134
24+
[#6100]: https://github.com/tokio-rs/tokio/pull/6100
25+
[#6075]: https://github.com/tokio-rs/tokio/pull/6075
26+
[#6010]: https://github.com/tokio-rs/tokio/pull/6010
27+
[#6094]: https://github.com/tokio-rs/tokio/pull/6094
228

329
# 1.33.0 (October 9, 2023)
430

tokio/Cargo.toml

+2-2
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.33.0"
9+
version = "1.34.0"
1010
edition = "2021"
1111
rust-version = "1.63"
1212
authors = ["Tokio Contributors <[email protected]>"]
@@ -89,7 +89,7 @@ test-util = ["rt", "sync", "time"]
8989
time = []
9090

9191
[dependencies]
92-
tokio-macros = { version = "~2.1.0", path = "../tokio-macros", optional = true }
92+
tokio-macros = { version = "~2.2.0", path = "../tokio-macros", optional = true }
9393

9494
pin-project-lite = "0.2.11"
9595

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

0 commit comments

Comments
 (0)