From 6bd40906acb8574a3a0bbadc7cf1349fadac7d3c Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Wed, 21 Jul 2021 20:57:30 +0900 Subject: [PATCH] Release 1.0.8 --- CHANGELOG.md | 5 ++++- Cargo.toml | 4 ++-- pin-project-internal/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fbafa8a2..7568f0a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com ## [Unreleased] +## [1.0.8] - 2021-07-21 + - [Suppress `clippy::use_self` and `clippy::type_repetition_in_bounds` lints in generated code.](https://github.com/taiki-e/pin-project/pull/331) ## [1.0.7] - 2021-04-16 @@ -600,7 +602,8 @@ See also [tracking issue for 0.4 release](https://github.com/taiki-e/pin-project Initial release -[Unreleased]: https://github.com/taiki-e/pin-project/compare/v1.0.7...HEAD +[Unreleased]: https://github.com/taiki-e/pin-project/compare/v1.0.8...HEAD +[1.0.8]: https://github.com/taiki-e/pin-project/compare/v1.0.7...v1.0.8 [1.0.7]: https://github.com/taiki-e/pin-project/compare/v1.0.6...v1.0.7 [1.0.6]: https://github.com/taiki-e/pin-project/compare/v1.0.5...v1.0.6 [1.0.5]: https://github.com/taiki-e/pin-project/compare/v1.0.4...v1.0.5 diff --git a/Cargo.toml b/Cargo.toml index 00291a7c..6ba9e9bd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pin-project" -version = "1.0.7" +version = "1.0.8" authors = ["Taiki Endo "] edition = "2018" license = "Apache-2.0 OR MIT" @@ -27,7 +27,7 @@ members = [ ] [dependencies] -pin-project-internal = { version = "=1.0.7", path = "pin-project-internal", default-features = false } +pin-project-internal = { version = "=1.0.8", path = "pin-project-internal", default-features = false } [dev-dependencies] pin-project-auxiliary-macro = { path = "tests/auxiliary/macro" } diff --git a/pin-project-internal/Cargo.toml b/pin-project-internal/Cargo.toml index 71fc35aa..3d0c5641 100644 --- a/pin-project-internal/Cargo.toml +++ b/pin-project-internal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pin-project-internal" -version = "1.0.7" +version = "1.0.8" authors = ["Taiki Endo "] edition = "2018" license = "Apache-2.0 OR MIT"