From 89fcffb62682a5bb703f88163fc7c8aa5c07d75f Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Fri, 3 Apr 2020 13:26:41 -0700 Subject: [PATCH] prepare to release 0.2.16 Signed-off-by: Eliza Weisman --- tokio/CHANGELOG.md | 8 ++++++++ tokio/Cargo.toml | 4 ++-- tokio/src/lib.rs | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md index b748408e088..68e2af6583f 100644 --- a/tokio/CHANGELOG.md +++ b/tokio/CHANGELOG.md @@ -1,3 +1,11 @@ +# 0.2.16 (April 3, 2020) + +### Fixes + +- sync: fix a regression where `Mutex`, `Semaphore`, and `RwLock` futures no + longer implement `Sync` (#2375) + + # 0.2.15 (April 2, 2020) ### Fixes diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index 31bf3271213..5dc264b5368 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.15" +version = "0.2.16" edition = "2018" authors = ["Tokio Contributors "] license = "MIT" readme = "README.md" -documentation = "https://docs.rs/tokio/0.2.15/tokio/" +documentation = "https://docs.rs/tokio/0.1.16/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 7db4cb3045f..dad00fd76c4 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.15")] +#![doc(html_root_url = "https://docs.rs/tokio/0.1.16")] #![allow( clippy::cognitive_complexity, clippy::large_enum_variant,