chore: prepare Tokio v1.15.0 release (#4320)

Includes `tokio-macros` v1.7.0
This commit is contained in:
Carl Lerche
2021-12-15 10:36:09 -08:00
committed by GitHub
parent 54e6693dff
commit f64673580d
6 changed files with 39 additions and 5 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ Make sure you activated the full features of the tokio crate on Cargo.toml:
```toml
[dependencies]
tokio = { version = "1.14.0", features = ["full"] }
tokio = { version = "1.15.0", features = ["full"] }
```
Then, on your main.rs:
+6
View File
@@ -1,3 +1,9 @@
# 1.7.0 (December 15th, 2021)
- macros: address remainging clippy::semicolon_if_nothing_returned warning ([#4252])
[#4252]: https://github.com/tokio-rs/tokio/pull/4252
# 1.6.0 (November 16th, 2021)
- macros: fix mut patterns in `select!` macro ([#4211])
+1 -1
View File
@@ -4,7 +4,7 @@ name = "tokio-macros"
# - Remove path dependencies
# - Update CHANGELOG.md.
# - Create "tokio-macros-1.0.x" git tag.
version = "1.6.0"
version = "1.7.0"
edition = "2018"
rust-version = "1.46"
authors = ["Tokio Contributors <[email protected]>"]
+28
View File
@@ -1,3 +1,31 @@
# 1.15.0 (December 15, 2021)
### Fixed
- io: add cooperative yielding support to `io::empty()` ([#4300])
- time: make timeout robust against budget-depleting tasks ([#4314])
### Changed
- update minimum supported Rust version to 1.46.
### Added
- time: add `Interval::reset()` ([#4248])
- io: add explicit lifetimes to `AsyncFdReadyGuard` ([#4267])
- process: add `Command::as_std()` ([#4295])
### Added (unstable)
- tracing: instrument `tokio::sync` types ([#4302])
[#4302]: https://github.com/tokio-rs/tokio/pull/4302
[#4300]: https://github.com/tokio-rs/tokio/pull/4300
[#4295]: https://github.com/tokio-rs/tokio/pull/4295
[#4267]: https://github.com/tokio-rs/tokio/pull/4267
[#4248]: https://github.com/tokio-rs/tokio/pull/4248
[#4314]: https://github.com/tokio-rs/tokio/pull/4314
# 1.14.0 (November 15, 2021)
### Fixed
+2 -2
View File
@@ -6,7 +6,7 @@ name = "tokio"
# - README.md
# - Update CHANGELOG.md.
# - Create "v1.0.x" git tag.
version = "1.14.0"
version = "1.15.0"
edition = "2018"
rust-version = "1.46"
authors = ["Tokio Contributors <[email protected]>"]
@@ -86,7 +86,7 @@ test-util = ["rt", "sync", "time"]
time = []
[dependencies]
tokio-macros = { version = "1.6.0", path = "../tokio-macros", optional = true }
tokio-macros = { version = "1.7.0", path = "../tokio-macros", optional = true }
pin-project-lite = "0.2.0"
+1 -1
View File
@@ -56,7 +56,7 @@ Make sure you activated the full features of the tokio crate on Cargo.toml:
```toml
[dependencies]
tokio = { version = "1.14.0", features = ["full"] }
tokio = { version = "1.15.0", features = ["full"] }
```
Then, on your main.rs: