From bab46f1cb391bb298aa95af45c02e380b6a4c72a Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Thu, 4 Jun 2020 21:15:24 +0900 Subject: [PATCH] Release 0.4.18 --- CHANGELOG.md | 5 ++++- Cargo.toml | 4 ++-- pin-project-internal/Cargo.toml | 4 ++-- pin-project-internal/src/lib.rs | 2 +- src/lib.rs | 2 +- 5 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 91139bba..1136745c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ This project adheres to [Semantic Versioning](https://semver.org). ## [Unreleased] +## [0.4.18] - 2020-06-04 + * [Support `Self` in more syntax positions inside `#[pinned_drop]` impl.][230] * [Suppress `clippy::type_repetition_in_bounds` and `clippy::used_underscore_binding` lints in generated code.][233] @@ -470,7 +472,8 @@ See also [tracking issue for 0.4 release][21]. Initial release -[Unreleased]: https://github.com/taiki-e/pin-project/compare/v0.4.17...HEAD +[Unreleased]: https://github.com/taiki-e/pin-project/compare/v0.4.18...HEAD +[0.4.18]: https://github.com/taiki-e/pin-project/compare/v0.4.17...v0.4.18 [0.4.17]: https://github.com/taiki-e/pin-project/compare/v0.4.16...v0.4.17 [0.4.16]: https://github.com/taiki-e/pin-project/compare/v0.4.15...v0.4.16 [0.4.15]: https://github.com/taiki-e/pin-project/compare/v0.4.14...v0.4.15 diff --git a/Cargo.toml b/Cargo.toml index d78ad16e..aaac5f1d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pin-project" -version = "0.4.17" +version = "0.4.18" authors = ["Taiki Endo "] edition = "2018" license = "Apache-2.0 OR MIT" @@ -29,7 +29,7 @@ members = [ ] [dependencies] -pin-project-internal = { version = "=0.4.17", path = "pin-project-internal", default-features = false } +pin-project-internal = { version = "=0.4.18", path = "pin-project-internal", default-features = false } [dev-dependencies] auxiliary-macros = { version = "0.1", path = "tests/ui/auxiliary" } diff --git a/pin-project-internal/Cargo.toml b/pin-project-internal/Cargo.toml index 597a134a..c8187020 100644 --- a/pin-project-internal/Cargo.toml +++ b/pin-project-internal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pin-project-internal" -version = "0.4.17" +version = "0.4.18" authors = ["Taiki Endo "] edition = "2018" license = "Apache-2.0 OR MIT" @@ -25,5 +25,5 @@ quote = "1.0" syn = { version = "1.0.13", features = ["full", "visit-mut"] } [dev-dependencies] -pin-project = { version = "0.4.17", path = ".." } +pin-project = { version = "0.4.18", path = ".." } rustversion = "1.0" diff --git a/pin-project-internal/src/lib.rs b/pin-project-internal/src/lib.rs index 53d02440..2f83f7dc 100644 --- a/pin-project-internal/src/lib.rs +++ b/pin-project-internal/src/lib.rs @@ -1,7 +1,7 @@ //! An internal crate to support pin_project - **do not use directly** #![recursion_limit = "256"] -#![doc(html_root_url = "https://docs.rs/pin-project-internal/0.4.17")] +#![doc(html_root_url = "https://docs.rs/pin-project-internal/0.4.18")] #![doc(test( no_crate_inject, attr(deny(warnings, rust_2018_idioms, single_use_lifetimes), allow(dead_code)) diff --git a/src/lib.rs b/src/lib.rs index 3a254eed..04da8ca1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -39,7 +39,7 @@ #![no_std] #![recursion_limit = "256"] -#![doc(html_root_url = "https://docs.rs/pin-project/0.4.17")] +#![doc(html_root_url = "https://docs.rs/pin-project/0.4.18")] #![doc(test( no_crate_inject, attr(deny(warnings, rust_2018_idioms, single_use_lifetimes), allow(dead_code))