From da186a785999eb5234ac0aad0b987bb128d52f69 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Thu, 10 Oct 2019 13:16:36 -0700 Subject: [PATCH] prepare tokio-sync v0.1.7 release. (#1650) --- tokio-sync/CHANGELOG.md | 5 +++++ tokio-sync/Cargo.toml | 4 ++-- tokio-sync/src/lib.rs | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/tokio-sync/CHANGELOG.md b/tokio-sync/CHANGELOG.md index 60b500a24..871f1c2f9 100644 --- a/tokio-sync/CHANGELOG.md +++ b/tokio-sync/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.1.7 (October 10, 2019) + +### Fixed +- memory leak when polling oneshot handle from more than one task (#1649). + # 0.1.6 (June 4, 2019) ### Added diff --git a/tokio-sync/Cargo.toml b/tokio-sync/Cargo.toml index 766f0b149..a8b571214 100644 --- a/tokio-sync/Cargo.toml +++ b/tokio-sync/Cargo.toml @@ -8,12 +8,12 @@ name = "tokio-sync" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.6" +version = "0.1.7" authors = ["Carl Lerche "] license = "MIT" repository = "https://github.com/tokio-rs/tokio" homepage = "https://tokio.rs" -documentation = "https://docs.rs/tokio-sync/0.1.6/tokio_sync" +documentation = "https://docs.rs/tokio-sync/0.1.7/tokio_sync" description = """ Synchronization utilities. """ diff --git a/tokio-sync/src/lib.rs b/tokio-sync/src/lib.rs index 834422725..8693f2f7c 100644 --- a/tokio-sync/src/lib.rs +++ b/tokio-sync/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tokio-sync/0.1.6")] +#![doc(html_root_url = "https://docs.rs/tokio-sync/0.1.7")] #![deny(missing_debug_implementations, missing_docs, unreachable_pub)] //! Asynchronous synchronization primitives.