From a51d39fcdb31fe78cc61c0053ead2beb65a4156d Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Thu, 25 Mar 2021 23:32:55 +0900 Subject: [PATCH] Release 1.0.6 --- CHANGELOG.md | 7 +++++-- Cargo.toml | 4 ++-- pin-project-internal/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9bf34b98..a9b56e17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,9 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com ## [Unreleased] -- Suppress `clippy::semicolon_if_nothing_returned` lint in generated code. +## [1.0.6] - 2021-03-25 + +- [Suppress `clippy::semicolon_if_nothing_returned` lint in generated code.](https://github.com/taiki-e/pin-project/pull/318) ## [1.0.5] - 2021-02-03 @@ -586,7 +588,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.5...HEAD +[Unreleased]: https://github.com/taiki-e/pin-project/compare/v1.0.6...HEAD +[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 [1.0.4]: https://github.com/taiki-e/pin-project/compare/v1.0.3...v1.0.4 [1.0.3]: https://github.com/taiki-e/pin-project/compare/v1.0.2...v1.0.3 diff --git a/Cargo.toml b/Cargo.toml index f10cf56d..ef460301 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pin-project" -version = "1.0.5" +version = "1.0.6" authors = ["Taiki Endo "] edition = "2018" license = "Apache-2.0 OR MIT" @@ -27,7 +27,7 @@ members = [ ] [dependencies] -pin-project-internal = { version = "=1.0.5", path = "pin-project-internal", default-features = false } +pin-project-internal = { version = "=1.0.6", 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 d850f642..707c32b6 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.5" +version = "1.0.6" authors = ["Taiki Endo "] edition = "2018" license = "Apache-2.0 OR MIT"