diff --git a/CHANGELOG.md b/CHANGELOG.md index 718aa501..76e245fa 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.12] - 2022-08-15 + - Suppress `unused_tuple_struct_fields` lint in generated code. ## [1.0.11] - 2022-07-02 @@ -678,7 +680,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.11...HEAD +[Unreleased]: https://github.com/taiki-e/pin-project/compare/v1.0.12...HEAD +[1.0.12]: https://github.com/taiki-e/pin-project/compare/v1.0.11...v1.0.12 [1.0.11]: https://github.com/taiki-e/pin-project/compare/v1.0.10...v1.0.11 [1.0.10]: https://github.com/taiki-e/pin-project/compare/v1.0.9...v1.0.10 [1.0.9]: https://github.com/taiki-e/pin-project/compare/v1.0.8...v1.0.9 diff --git a/Cargo.toml b/Cargo.toml index 2fc8af9a..6ddfa420 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pin-project" -version = "1.0.11" +version = "1.0.12" edition = "2018" rust-version = "1.37" license = "Apache-2.0 OR MIT" @@ -26,7 +26,7 @@ members = [ ] [dependencies] -pin-project-internal = { version = "=1.0.11", path = "pin-project-internal" } +pin-project-internal = { version = "=1.0.12", path = "pin-project-internal" } [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 1c1f646e..8529e366 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.11" +version = "1.0.12" edition = "2018" rust-version = "1.37" license = "Apache-2.0 OR MIT"