From da171253167da9c6aac60357900317dc5d129d5a Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Wed, 4 Dec 2019 13:58:09 -0800 Subject: [PATCH] v0.1.x: prepare to release tokio-threadpool 0.1.17 (#1893) 0.1.17 (December 3, 2019) Added - Internal APIs for overriding blocking behavior (#1752) Signed-off-by: Eliza Weisman --- tokio-threadpool/CHANGELOG.md | 5 +++++ tokio-threadpool/Cargo.toml | 4 ++-- tokio-threadpool/README.md | 2 +- tokio-threadpool/src/lib.rs | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/tokio-threadpool/CHANGELOG.md b/tokio-threadpool/CHANGELOG.md index 59dfa3c75..f99b9f90e 100644 --- a/tokio-threadpool/CHANGELOG.md +++ b/tokio-threadpool/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.1.17 (December 3, 2019) + +### Added +- Internal APIs for overriding blocking behavior (#1752) + # 0.1.16 (September 25, 2019) ### Changed diff --git a/tokio-threadpool/Cargo.toml b/tokio-threadpool/Cargo.toml index 0f7a48272..38f7e4097 100644 --- a/tokio-threadpool/Cargo.toml +++ b/tokio-threadpool/Cargo.toml @@ -8,8 +8,8 @@ name = "tokio-threadpool" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.16" -documentation = "https://docs.rs/tokio-threadpool/0.1.16/tokio_threadpool" +version = "0.1.17" +documentation = "https://docs.rs/tokio-threadpool/0.1.17/tokio_threadpool" repository = "https://github.com/tokio-rs/tokio" homepage = "https://github.com/tokio-rs/tokio" license = "MIT" diff --git a/tokio-threadpool/README.md b/tokio-threadpool/README.md index 8ce7fa8cf..2a98585a8 100644 --- a/tokio-threadpool/README.md +++ b/tokio-threadpool/README.md @@ -3,7 +3,7 @@ A library for scheduling execution of futures concurrently across a pool of threads. -[Documentation](https://docs.rs/tokio-threadpool/0.1.16/tokio_threadpool) +[Documentation](https://docs.rs/tokio-threadpool/0.1.17/tokio_threadpool) ### Why not Rayon? diff --git a/tokio-threadpool/src/lib.rs b/tokio-threadpool/src/lib.rs index 69d601087..a879af177 100644 --- a/tokio-threadpool/src/lib.rs +++ b/tokio-threadpool/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tokio-threadpool/0.1.16")] +#![doc(html_root_url = "https://docs.rs/tokio-threadpool/0.1.17")] #![deny(missing_docs, missing_debug_implementations)] //! A work-stealing based thread pool for executing futures.