diff --git a/CHANGELOG.md b/CHANGELOG.md index f5d2226f..0e7bb44e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,8 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com ## [Unreleased] +## [1.1.10] - 2025-03-03 + - Suppress `clippy::elidable_lifetime_names` lint in generated code. ## [1.1.9] - 2025-02-03 @@ -726,7 +728,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.9...HEAD +[Unreleased]: https://github.com/taiki-e/pin-project/compare/v1.1.10...HEAD +[1.1.10]: https://github.com/taiki-e/pin-project/compare/v1.1.9...v1.1.10 [1.1.9]: https://github.com/taiki-e/pin-project/compare/v1.1.8...v1.1.9 [1.1.8]: https://github.com/taiki-e/pin-project/compare/v1.1.7...v1.1.8 [1.1.7]: https://github.com/taiki-e/pin-project/compare/v1.1.6...v1.1.7 diff --git a/Cargo.toml b/Cargo.toml index 17ad9cf0..ec3f30f7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pin-project" -version = "1.1.9" #publish:version +version = "1.1.10" #publish:version edition = "2021" rust-version = "1.56" # Align to pin-project-internal license = "Apache-2.0 OR MIT" @@ -25,7 +25,7 @@ allowed_external_types = [ doc-scrape-examples = false [dependencies] -pin-project-internal = { version = "=1.1.9", path = "pin-project-internal" } +pin-project-internal = { version = "=1.1.10", 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 491e994d..3960e767 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.9" #publish:version +version = "1.1.10" #publish:version edition = "2021" rust-version = "1.56" # For syn license = "Apache-2.0 OR MIT"