From 08548583b948a0be04338f1b1462917c001dbf4a Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Mon, 30 Nov 2020 12:57:31 -0800 Subject: chore: prepare v0.3.5 release (#3201) --- tokio/CHANGELOG.md | 10 ++++++++++ tokio/Cargo.toml | 4 ++-- tokio/src/lib.rs | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md index 994dda49..b9bbd04a 100644 --- a/tokio/CHANGELOG.md +++ b/tokio/CHANGELOG.md @@ -1,3 +1,13 @@ +# 0.3.5 (November 30, 2020) + +### Fixed +- rt: fix `shutdown_timeout(0)` (#3196). +- time: fixed race condition with small sleeps (#3069). + +### Added +- io: `AsyncFd::with_interest()` (#3167). +- signal: `CtrlC` stream on windows (#3186). + # 0.3.4 (November 18, 2020) ### Fixed diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index c658fc44..15ba7179 100644 --- a/tokio/Cargo.toml +++ b/tokio/Cargo.toml @@ -8,12 +8,12 @@ name = "tokio" # - README.md # - Update CHANGELOG.md. # - Create "v0.3.x" git tag. -version = "0.3.4" +version = "0.3.5" edition = "2018" authors = ["Tokio Contributors "] license = "MIT" readme = "README.md" -documentation = "https://docs.rs/tokio/0.3.4/tokio/" +documentation = "https://docs.rs/tokio/0.3.5/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 2bb63824..1d510ae8 100644 --- a/tokio/src/lib.rs +++ b/tokio/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tokio/0.3.4")] +#![doc(html_root_url = "https://docs.rs/tokio/0.3.5")] #![allow( clippy::cognitive_complexity, clippy::large_enum_variant, -- cgit v1.2.3