From 8a695f10f0947a1a1de5a1d98ec8a02993c43b24 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Mon, 20 Jan 2020 18:49:24 +0900 Subject: [PATCH] Release 0.4.7 --- 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 7c636472..3afd4779 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ This project adheres to [Semantic Versioning](https://semver.org). ## [Unreleased] +## [0.4.7] - 2020-01-20 + +* [Fixed support for lifetime bounds.][176] + +[176]: https://github.com/taiki-e/pin-project/pull/176 + ## [0.4.6] - 2019-11-20 * [Fixed compile error when there is `Self` in the where clause.][169] @@ -296,7 +302,8 @@ See also [tracking issue for 0.4 release][21]. Initial release -[Unreleased]: https://github.com/taiki-e/pin-project/compare/v0.4.6...HEAD +[Unreleased]: https://github.com/taiki-e/pin-project/compare/v0.4.7...HEAD +[0.4.7]: https://github.com/taiki-e/pin-project/compare/v0.4.6...v0.4.7 [0.4.6]: https://github.com/taiki-e/pin-project/compare/v0.4.5...v0.4.6 [0.4.5]: https://github.com/taiki-e/pin-project/compare/v0.4.4...v0.4.5 [0.4.4]: https://github.com/taiki-e/pin-project/compare/v0.4.3...v0.4.4 diff --git a/Cargo.toml b/Cargo.toml index 94544f48..a0f5f86c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pin-project" -version = "0.4.6" +version = "0.4.7" authors = ["Taiki Endo "] edition = "2018" license = "Apache-2.0 OR MIT" @@ -22,7 +22,7 @@ members = [ ] [dependencies] -pin-project-internal = { version = "=0.4.6", path = "pin-project-internal", default-features = false } +pin-project-internal = { version = "=0.4.7", 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 3c3d09c9..4340b410 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.6" +version = "0.4.7" authors = ["Taiki Endo "] edition = "2018" license = "Apache-2.0 OR MIT" @@ -22,5 +22,5 @@ quote = "1.0" syn = { version = "1.0", features = ["full", "visit-mut"] } [dev-dependencies] -pin-project = { version = "0.4.6", path = ".." } +pin-project = { version = "0.4.7", path = ".." } rustversion = "1.0" diff --git a/pin-project-internal/src/lib.rs b/pin-project-internal/src/lib.rs index 2b33249a..08050f4f 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.6")] +#![doc(html_root_url = "https://docs.rs/pin-project-internal/0.4.7")] #![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 c29f9d21..ff3ecc4f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -34,7 +34,7 @@ #![no_std] #![recursion_limit = "256"] -#![doc(html_root_url = "https://docs.rs/pin-project/0.4.6")] +#![doc(html_root_url = "https://docs.rs/pin-project/0.4.7")] #![doc(test( no_crate_inject, attr(deny(warnings, rust_2018_idioms, single_use_lifetimes), allow(dead_code))