From 02661ba30aed5d02e142212a323103d1bf84557b Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Wed, 13 May 2020 11:45:02 -0700 Subject: [PATCH] chore: prepare v0.2.21 release (#2530) --- tokio/CHANGELOG.md | 17 +++++++++++++++++ tokio/Cargo.toml | 4 ++-- tokio/src/lib.rs | 2 +- 3 files changed, 20 insertions(+), 3 deletions(-) diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md index 26d052c5682..b852b393da4 100644 --- a/tokio/CHANGELOG.md +++ b/tokio/CHANGELOG.md @@ -1,3 +1,20 @@ +# 0.2.21 (May 13, 2020) + +### Fixes + +- macros: disambiguate built-in `#[test]` attribute in macro expansion (#2503) +- rt: `LocalSet` and task budgeting (#2462). +- rt: task budgeting with `block_in_place` (#2502). +- sync: release `broadcast` channel memory without sending a value (#2509). +- time: notify when resetting a `Delay` to a time in the past (#2290). + +### Added +- io: `get_mut`, `get_ref`, and `into_inner` to `Lines` (#2450). +- io: `mio::Ready` argument to `PollEvented` (#2419). +- os: illumos support (#2486). +- rt: `Handle::spawn_blocking` (#2501). +- sync: `OwnedMutexGuard` for `Arc>` (#2455). + # 0.2.20 (April 28, 2020) ### Fixes diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index 2baa72f5399..e596375d630 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.20" +version = "0.2.21" edition = "2018" authors = ["Tokio Contributors "] license = "MIT" readme = "README.md" -documentation = "https://docs.rs/tokio/0.2.20/tokio/" +documentation = "https://docs.rs/tokio/0.2.21/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 04258f3d6b6..fbfffcbfc9f 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.20")] +#![doc(html_root_url = "https://docs.rs/tokio/0.2.21")] #![allow( clippy::cognitive_complexity, clippy::large_enum_variant,