From 3137c6f07dabc4edc37acf717fd8c565bd78927b Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Thu, 9 Apr 2020 13:49:19 -0700 Subject: [PATCH] chore: prepare to release 0.2.17 (#2392) # 0.2.17 (April 9, 2020) ### Fixes - rt: bug in work-stealing queue (#2387) ### Changes - rt: threadpool uses logical CPU count instead of physical by default (#2391) 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 f91a5a8c0..92228f51f 100644 --- a/tokio/CHANGELOG.md +++ b/tokio/CHANGELOG.md @@ -1,3 +1,11 @@ +# 0.2.17 (April 9, 2020) + +### Fixes +- rt: bug in work-stealing queue (#2387) + +### Changes +- rt: threadpool uses logical CPU count instead of physical by default (#2391) + # 0.2.16 (April 3, 2020) ### Fixes diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index 5b099c125..3d075bbc2 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.16" +version = "0.2.17" edition = "2018" authors = ["Tokio Contributors "] license = "MIT" readme = "README.md" -documentation = "https://docs.rs/tokio/0.2.16/tokio/" +documentation = "https://docs.rs/tokio/0.2.17/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 d0cb5fa42..9b1d6cdb0 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.16")] +#![doc(html_root_url = "https://docs.rs/tokio/0.2.17")] #![allow( clippy::cognitive_complexity, clippy::large_enum_variant,