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,