From 60b1678f0b116c9667828c258ed6b1e1649b2011 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Mon, 27 Jul 2020 22:46:15 +0900 Subject: [PATCH] Release 0.4.23 --- CHANGELOG.md | 9 ++++++++- Cargo.toml | 4 ++-- pin-project-internal/Cargo.toml | 4 ++-- pin-project-internal/src/lib.rs | 2 +- src/lib.rs | 2 +- 5 files changed, 14 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d40af34b..6ad74388 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ This project adheres to [Semantic Versioning](https://semver.org). ## [Unreleased] +## [0.4.23] - 2020-07-27 + +* [Fix compile error with `?Sized` type parameters.][262] + +[262]: https://github.com/taiki-e/pin-project/pull/262 + ## [0.4.22] - 2020-06-14 * Documentation improvements. @@ -547,7 +553,8 @@ See also [tracking issue for 0.4 release][21]. Initial release -[Unreleased]: https://github.com/taiki-e/pin-project/compare/v0.4.22...HEAD +[Unreleased]: https://github.com/taiki-e/pin-project/compare/v0.4.23...HEAD +[0.4.23]: https://github.com/taiki-e/pin-project/compare/v0.4.22...v0.4.23 [0.4.22]: https://github.com/taiki-e/pin-project/compare/v0.4.21...v0.4.22 [0.4.21]: https://github.com/taiki-e/pin-project/compare/v0.4.20...v0.4.21 [0.4.20]: https://github.com/taiki-e/pin-project/compare/v0.4.19...v0.4.20 diff --git a/Cargo.toml b/Cargo.toml index fa63691b..0155813d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pin-project" -version = "0.4.22" +version = "0.4.23" authors = ["Taiki Endo "] edition = "2018" license = "Apache-2.0 OR MIT" @@ -29,7 +29,7 @@ members = [ ] [dependencies] -pin-project-internal = { version = "=0.4.22", path = "pin-project-internal", default-features = false } +pin-project-internal = { version = "=0.4.23", 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 2659969b..dc274faf 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.22" +version = "0.4.23" 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.22", path = ".." } +pin-project = { version = "0.4.23", path = ".." } rustversion = "1.0" diff --git a/pin-project-internal/src/lib.rs b/pin-project-internal/src/lib.rs index 94fccda8..eeb71d73 100644 --- a/pin-project-internal/src/lib.rs +++ b/pin-project-internal/src/lib.rs @@ -1,6 +1,6 @@ //! An internal crate to support pin_project - **do not use directly** -#![doc(html_root_url = "https://docs.rs/pin-project-internal/0.4.22")] +#![doc(html_root_url = "https://docs.rs/pin-project-internal/0.4.23")] #![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 a9329068..6829c260 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -36,7 +36,7 @@ //! [struct-default-expanded]: https://github.com/taiki-e/pin-project/blob/master/examples/struct-default-expanded.rs #![no_std] -#![doc(html_root_url = "https://docs.rs/pin-project/0.4.22")] +#![doc(html_root_url = "https://docs.rs/pin-project/0.4.23")] #![doc(test( no_crate_inject, attr(deny(warnings, rust_2018_idioms, single_use_lifetimes), allow(dead_code))