From d883ac0fa0c65fdc25bedf5566cb76c236fae3f7 Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Fri, 3 Apr 2020 17:00:42 -0700 Subject: [PATCH] chore: prepare tokio 0.2.16 release # 0.2.16 (April 3, 2020) ### Fixes - sync: fix a regression where `Mutex`, `Semaphore`, and `RwLock` futures no longer implement `Sync` (#2375) - fs: fix `fs::copy` not copying file permissions (#2354) ### Added - time: added `deadline` method to `delay_queue::Expired` (#2300) - io: added `StreamReader` (#2052) Signed-off-by: Eliza Weisman --- tokio/CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md index 68e2af658..f91a5a8c0 100644 --- a/tokio/CHANGELOG.md +++ b/tokio/CHANGELOG.md @@ -4,7 +4,12 @@ - sync: fix a regression where `Mutex`, `Semaphore`, and `RwLock` futures no longer implement `Sync` (#2375) +- fs: fix `fs::copy` not copying file permissions (#2354) +### Added + +- time: added `deadline` method to `delay_queue::Expired` (#2300) +- io: added `StreamReader` (#2052) # 0.2.15 (April 2, 2020)