From f1a7caea3fb805c5b1b1fe1ba1551910e4a95911 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Thu, 5 Jul 2018 10:22:03 -0700 Subject: [PATCH] Bump tokio-threadpool to v0.1.5 (#462) --- tokio-threadpool/CHANGELOG.md | 5 +++++ tokio-threadpool/Cargo.toml | 2 +- tokio-threadpool/src/lib.rs | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/tokio-threadpool/CHANGELOG.md b/tokio-threadpool/CHANGELOG.md index b496961f6..57716e6b4 100644 --- a/tokio-threadpool/CHANGELOG.md +++ b/tokio-threadpool/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.1.5 (July 3, 2018) + +* Fix race condition bug when threads are woken up (#459). +* Improve `BlockingError` message (#451). + # 0.1.4 (June 6, 2018) * Fix bug that can occur with multiple pools in a process (#375). diff --git a/tokio-threadpool/Cargo.toml b/tokio-threadpool/Cargo.toml index c3e6bc306..a3e2e9b01 100644 --- a/tokio-threadpool/Cargo.toml +++ b/tokio-threadpool/Cargo.toml @@ -4,7 +4,7 @@ name = "tokio-threadpool" # - Update html_root_url. # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.4" +version = "0.1.5" documentation = "https://docs.rs/tokio-threadpool" repository = "https://github.com/tokio-rs/tokio" homepage = "https://github.com/tokio-rs/tokio" diff --git a/tokio-threadpool/src/lib.rs b/tokio-threadpool/src/lib.rs index 9b59edea6..05d3d3eb1 100644 --- a/tokio-threadpool/src/lib.rs +++ b/tokio-threadpool/src/lib.rs @@ -1,6 +1,6 @@ //! A work-stealing based thread pool for executing futures. -#![doc(html_root_url = "https://docs.rs/tokio-threadpool/0.1.4")] +#![doc(html_root_url = "https://docs.rs/tokio-threadpool/0.1.5")] #![deny(warnings, missing_docs, missing_debug_implementations)] // The Tokio thread pool is designed to scheduled futures in Tokio based