From f01136b5c0bbbe72fa674df4924cc53a872cffff Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Wed, 1 Apr 2020 13:54:11 -0700 Subject: [PATCH] chore: prepare tokio v0.2.14 release (#2356) --- tokio/CHANGELOG.md | 30 +++++++++++++++++++++++------- tokio/Cargo.toml | 4 ++-- tokio/src/lib.rs | 2 +- 3 files changed, 26 insertions(+), 10 deletions(-) diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md index b1f4cf26d..f24eda651 100644 --- a/tokio/CHANGELOG.md +++ b/tokio/CHANGELOG.md @@ -1,9 +1,25 @@ -# 0.2.13 (February 28, 2019) +# 0.2.14 (April 1, 2020) + +### Fixes +- rt: concurrency bug in scheduler (#2273). +- rt: concurrency bug with shell runtime (#2333). +- test-util: correct pause/resume of time (#2253). +- time: `DelayQueue` correct wakeup after `insert` (#2285). + +### Added +- io: impl `RawFd`, `AsRawHandle` for std io types (#2335). +- rt: automatic cooperative task yielding (#2160, #2343, #2349). +- sync: `RwLock::into_inner` (#2321). + +### Changed +- sync: semaphore, mutex internals rewritten to avoid allocations (#2325). + +# 0.2.13 (February 28, 2020) ### Fixes - macros: unresolved import in `pin!` (#2281). -# 0.2.12 (February 27, 2019) +# 0.2.12 (February 27, 2020) ### Fixes - net: `UnixStream::poll_shutdown` should call `shutdown(Write)` (#2245). @@ -30,7 +46,7 @@ for channel capacity (#2227). - time: impl `Ord` and `Hash` for `Instant` (#2239). -# 0.2.11 (January 27, 2019) +# 0.2.11 (January 27, 2020) ### Fixes - docs: misc fixes and tweaks (#2155, #2103, #2027, #2167, #2175). @@ -51,7 +67,7 @@ - sync: impl `Eq`, `PartialEq` for `oneshot::RecvError` (#2168). - task: methods for inspecting the `JoinError` cause (#2051). -# 0.2.10 (January 21, 2019) +# 0.2.10 (January 21, 2020) ### Fixes - `#[tokio::main]` when `rt-core` feature flag is not enabled (#2139). @@ -73,7 +89,7 @@ - `StreamExt::merge` combines two streams, yielding values as they become ready (#2091). - Task-local storage (#2126). -# 0.2.9 (January 9, 2019) +# 0.2.9 (January 9, 2020) ### Fixes - `AsyncSeek` impl for `File` (#1986). @@ -81,12 +97,12 @@ - rt: memory ordering when dropping `JoinHandle` (#2044). - docs: misc API documentation fixes and improvements. -# 0.2.8 (January 7, 2019) +# 0.2.8 (January 7, 2020) ### Fixes - depend on new version of `tokio-macros`. -# 0.2.7 (January 7, 2019) +# 0.2.7 (January 7, 2020) ### Fixes - potential deadlock when dropping `basic_scheduler` Runtime. diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index 1b18e6ad8..d3ec9f685 100644 --- a/tokio/Cargo.toml +++ b/tokio/Cargo.toml @@ -8,12 +8,12 @@ name = "tokio" # - README.md # - Update CHANGELOG.md. # - Create "v0.2.x" git tag. -version = "0.2.13" +version = "0.2.14" edition = "2018" authors = ["Tokio Contributors "] license = "MIT" readme = "README.md" -documentation = "https://docs.rs/tokio/0.2.13/tokio/" +documentation = "https://docs.rs/tokio/0.2.14/tokio/" repository = "https://github.com/tokio-rs/tokio" homepage = "https://tokio.rs" description = """ diff --git a/tokio/src/lib.rs b/tokio/src/lib.rs index 87a1d0c45..bcb5a244f 100644 --- a/tokio/src/lib.rs +++ b/tokio/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tokio/0.2.13")] +#![doc(html_root_url = "https://docs.rs/tokio/0.2.14")] #![allow( clippy::cognitive_complexity, clippy::large_enum_variant,