Skip to content

Commit c0974ba

Browse files
authored
chore: prepare Tokio v1.10.0 (#4038)
1 parent b67534a commit c0974ba

File tree

4 files changed

+45
-4
lines changed

4 files changed

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

tokio/CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,44 @@
1+
# 1.10.0 (August 12, 2021)
2+
3+
### Added
4+
5+
- io: add `(read|write)_f(32|64)[_le]` methods ([#4022])
6+
- io: add `fill_buf` and `consume` to `AsyncBufReadExt` ([#3991])
7+
- process: add `Child::raw_handle()` on windows ([#3998])
8+
9+
### Fixed
10+
11+
- doc: fix non-doc builds with `--cfg docsrs` ([#4020])
12+
- io: flush eagerly in `io::copy` ([#4001])
13+
- runtime: a debug assert was sometimes triggered during shutdown ([#4005])
14+
- sync: use `spin_loop_hint` instead of `yield_now` in mpsc ([#4037])
15+
- tokio: the test-util feature depends on rt, sync, and time ([#4036])
16+
17+
### Changes
18+
19+
- runtime: reorganize parts of the runtime ([#3979], [#4005])
20+
- signal: make windows docs for signal module show up on unix builds ([#3770])
21+
- task: quickly send task to heap on debug mode ([#4009])
22+
23+
### Documented
24+
25+
- io: document cancellation safety of `AsyncBufReadExt` ([#3997])
26+
- sync: document when `watch::send` fails ([#4021])
27+
28+
[#3770]: https://github.com/tokio-rs/tokio/pull/3770
29+
[#3979]: https://github.com/tokio-rs/tokio/pull/3979
30+
[#3991]: https://github.com/tokio-rs/tokio/pull/3991
31+
[#3997]: https://github.com/tokio-rs/tokio/pull/3997
32+
[#3998]: https://github.com/tokio-rs/tokio/pull/3998
33+
[#4001]: https://github.com/tokio-rs/tokio/pull/4001
34+
[#4005]: https://github.com/tokio-rs/tokio/pull/4005
35+
[#4009]: https://github.com/tokio-rs/tokio/pull/4009
36+
[#4020]: https://github.com/tokio-rs/tokio/pull/4020
37+
[#4021]: https://github.com/tokio-rs/tokio/pull/4021
38+
[#4022]: https://github.com/tokio-rs/tokio/pull/4022
39+
[#4036]: https://github.com/tokio-rs/tokio/pull/4036
40+
[#4037]: https://github.com/tokio-rs/tokio/pull/4037
41+
142
# 1.9.0 (July 22, 2021)
243

344
### Added

tokio/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ name = "tokio"
77
# - README.md
88
# - Update CHANGELOG.md.
99
# - Create "v1.0.x" git tag.
10-
version = "1.9.0"
10+
version = "1.10.0"
1111
edition = "2018"
1212
authors = ["Tokio Contributors <[email protected]>"]
1313
license = "MIT"
1414
readme = "README.md"
15-
documentation = "https://docs.rs/tokio/1.9.0/tokio/"
15+
documentation = "https://docs.rs/tokio/1.10.0/tokio/"
1616
repository = "https://github.com/tokio-rs/tokio"
1717
homepage = "https://tokio.rs"
1818
description = """

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

0 commit comments

Comments
 (0)