From ecc23c084a64188e272e2c1e9e370189358a088b Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Fri, 28 Feb 2020 13:51:24 -0800 Subject: [PATCH] chore: prepare v0.2.13 release (#2282) Includes a quick bug fix --- tokio/CHANGELOG.md | 5 +++++ tokio/Cargo.toml | 4 ++-- tokio/src/lib.rs | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md index ed785082f..b1f4cf26d 100644 --- a/tokio/CHANGELOG.md +++ b/tokio/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.2.13 (February 28, 2019) + +### Fixes +- macros: unresolved import in `pin!` (#2281). + # 0.2.12 (February 27, 2019) ### Fixes diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index 20f68c39c..322f59081 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.12" +version = "0.2.13" edition = "2018" authors = ["Tokio Contributors "] license = "MIT" readme = "README.md" -documentation = "https://docs.rs/tokio/0.2.12/tokio/" +documentation = "https://docs.rs/tokio/0.2.13/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 043c35220..843a1e64b 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.12")] +#![doc(html_root_url = "https://docs.rs/tokio/0.2.13")] #![allow( clippy::cognitive_complexity, clippy::large_enum_variant,