diff --git a/CHANGELOG.md b/CHANGELOG.md index dad7a906..0c9ffbe5 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.4] - 2024-01-25 + - Suppress `clippy::missing_docs_in_private_items` and `clippy::missing_inline_in_public_items` lints in generated code. ([#356](https://github.com/taiki-e/pin-project/pull/356), thanks @daxpedda) ## [1.1.3] - 2023-08-06 @@ -698,7 +700,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.3...HEAD +[Unreleased]: https://github.com/taiki-e/pin-project/compare/v1.1.4...HEAD +[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 [1.1.2]: https://github.com/taiki-e/pin-project/compare/v1.1.1...v1.1.2 [1.1.1]: https://github.com/taiki-e/pin-project/compare/v1.1.0...v1.1.1 diff --git a/Cargo.toml b/Cargo.toml index 942653b8..c2054495 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pin-project" -version = "1.1.3" +version = "1.1.4" 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.3", path = "pin-project-internal" } +pin-project-internal = { version = "=1.1.4", 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 8c21161e..f518aeca 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.3" +version = "1.1.4" edition = "2021" rust-version = "1.56" license = "Apache-2.0 OR MIT"