Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: prepare tokio v1.2.0 #3506

Merged
merged 4 commits into from
Feb 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 22 additions & 2 deletions tokio/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,27 @@
# 1.2.0 (February 5, 2021)

### Added

- signal: make `Signal::poll_recv` method public ([#3383])

### Fixed

- time: make `test-util` paused time fully deterministic ([#3492])

### Documented

- sync: link to new broadcast and watch wrappers ([#3504])

[#3383]: https://github.com/tokio-rs/tokio/pull/3383
[#3492]: https://github.com/tokio-rs/tokio/pull/3492
[#3504]: https://github.com/tokio-rs/tokio/pull/3504

# 1.1.1 (January 29, 2021)

Forward ports 1.0.3 fix.

### Fixed
- io: memory leak during shutdown (#3477).
- io: memory leak during shutdown ([#3477]).

# 1.1.0 (January 22, 2021)

Expand Down Expand Up @@ -58,7 +76,9 @@ Forward ports 1.0.3 fix.
# 1.0.3 (January 28, 2021)

### Fixed
- io: memory leak during shutdown (#3477).
- io: memory leak during shutdown ([#3477]).

[#3477]: https://github.com/tokio-rs/tokio/pull/3477

# 1.0.2 (January 14, 2021)

Expand Down
6 changes: 3 additions & 3 deletions tokio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ name = "tokio"
# - README.md
# - Update CHANGELOG.md.
# - Create "v1.0.x" git tag.
version = "1.1.1"
version = "1.2.0"
edition = "2018"
authors = ["Tokio Contributors <team@tokio.rs>"]
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/tokio/1.1.1/tokio/"
documentation = "https://docs.rs/tokio/1.2.0/tokio/"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
description = """
Expand Down Expand Up @@ -86,7 +86,7 @@ test-util = []
time = []

[dependencies]
tokio-macros = { version = "1.0.0", path = "../tokio-macros", optional = true }
tokio-macros = { version = "1.1.0", path = "../tokio-macros", optional = true }

pin-project-lite = "0.2.0"

Expand Down
2 changes: 1 addition & 1 deletion tokio/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tokio/1.1.1")]
#![doc(html_root_url = "https://docs.rs/tokio/1.2.0")]
#![allow(
clippy::cognitive_complexity,
clippy::large_enum_variant,
Expand Down