diff --git a/CHANGELOG.md b/CHANGELOG.md index 82fb7f15..b28dc23f 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.8] - 2025-01-06 + - Suppress `unnameable_types`, `clippy::absolute_paths`, `clippy::min_ident_chars`, `clippy::pub_with_shorthand`, `clippy::single_call_fn`, `clippy::single_char_lifetime_names` lints in generated code. ## [1.1.7] - 2024-10-24 @@ -718,7 +720,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.7...HEAD +[Unreleased]: https://github.com/taiki-e/pin-project/compare/v1.1.8...HEAD +[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 [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 diff --git a/Cargo.toml b/Cargo.toml index da26bba5..85340153 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pin-project" -version = "1.1.7" #publish:version +version = "1.1.8" #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.7", path = "pin-project-internal" } +pin-project-internal = { version = "=1.1.8", 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 84fbe679..d73a5793 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.7" #publish:version +version = "1.1.8" #publish:version edition = "2021" rust-version = "1.56" license = "Apache-2.0 OR MIT"