From 176c809e2052451c4d2c1c6d639ca56a900a779d Mon Sep 17 00:00:00 2001 From: bdonlan Date: Mon, 14 Dec 2020 13:51:38 -0800 Subject: [PATCH] chore: prepare v0.3.6 release (#3276) --- tokio/CHANGELOG.md | 13 +++++++++++++ tokio/Cargo.toml | 4 ++-- tokio/src/lib.rs | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md index b9bbd04ad65..4be02ba962a 100644 --- a/tokio/CHANGELOG.md +++ b/tokio/CHANGELOG.md @@ -1,3 +1,16 @@ +# 0.3.6 (December 14, 2020) + +### Fixed +- rt: fix deadlock in shutdown (#3228) +- rt: fix panic in task abort when off rt (#3159) +- sync: make `add_permits` panic with usize::MAX >> 3 permits (#3188) +- time: Fix race condition in timer drop (#3229) +- watch: fix spurious wakeup (#3244) + +### Added +- example: add back udp-codec example (#3205) +- net: add `TcpStream::into_std` (#3189) + # 0.3.5 (November 30, 2020) ### Fixed diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index ad56ef02b44..a484d2c0bf6 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.5" +version = "0.3.6" edition = "2018" authors = ["Tokio Contributors "] license = "MIT" readme = "README.md" -documentation = "https://docs.rs/tokio/0.3.5/tokio/" +documentation = "https://docs.rs/tokio/0.3.6/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 1d510ae8cdd..1c9160fda4d 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.5")] +#![doc(html_root_url = "https://docs.rs/tokio/0.3.6")] #![allow( clippy::cognitive_complexity, clippy::large_enum_variant,