Skip to content

Commit

Permalink
chore: prepare Tokio v1.15.0 release (#4320)
Browse files Browse the repository at this point in the history
Includes `tokio-macros` v1.7.0
  • Loading branch information
carllerche committed Dec 15, 2021
1 parent 54e6693 commit f646735
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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:

Expand Down
6 changes: 6 additions & 0 deletions tokio-macros/CHANGELOG.md
@@ -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])
Expand Down
2 changes: 1 addition & 1 deletion tokio-macros/Cargo.toml
Expand Up @@ -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 <team@tokio.rs>"]
Expand Down
28 changes: 28 additions & 0 deletions tokio/CHANGELOG.md
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions tokio/Cargo.toml
Expand Up @@ -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 <team@tokio.rs>"]
Expand Down Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion tokio/README.md
Expand Up @@ -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:

Expand Down

0 comments on commit f646735

Please sign in to comment.