diff --git a/CHANGELOG.md b/CHANGELOG.md index 393e19f5..784c109b 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.1.6] - 2024-10-05 + - Suppress `clippy::needless_lifetimes` lint in generated code. - Disable `derive` feature of `syn` dependency. @@ -708,7 +710,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.1.5...HEAD +[Unreleased]: https://github.com/taiki-e/pin-project/compare/v1.1.6...HEAD +[1.1.6]: https://github.com/taiki-e/pin-project/compare/v1.1.5...v1.1.6 [1.1.5]: https://github.com/taiki-e/pin-project/compare/v1.1.4...v1.1.5 [1.1.4]: https://github.com/taiki-e/pin-project/compare/v1.1.3...v1.1.4 [1.1.3]: https://github.com/taiki-e/pin-project/compare/v1.1.2...v1.1.3 diff --git a/Cargo.toml b/Cargo.toml index 9fa43dc4..5b00a408 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pin-project" -version = "1.1.5" #publish:version +version = "1.1.6" #publish:version edition = "2021" rust-version = "1.56" license = "Apache-2.0 OR MIT" @@ -25,7 +25,7 @@ allowed_external_types = [ doc-scrape-examples = false [dependencies] -pin-project-internal = { version = "=1.1.5", path = "pin-project-internal" } +pin-project-internal = { version = "=1.1.6", 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 ea2780b2..3da31163 100644 --- a/pin-project-internal/Cargo.toml +++ b/pin-project-internal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pin-project-internal" -version = "1.1.5" #publish:version +version = "1.1.6" #publish:version edition = "2021" rust-version = "1.56" license = "Apache-2.0 OR MIT"