diff --git a/CHANGELOG.md b/CHANGELOG.md index 32528d1b..4928f7ca 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.7] - 2024-10-24 + - Work around an issue on negative_impls that allows unsound overlapping `Unpin` implementations. ([#357](https://github.com/taiki-e/pin-project/pull/357)) ## [1.1.6] - 2024-10-05 @@ -714,7 +716,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.6...HEAD +[Unreleased]: https://github.com/taiki-e/pin-project/compare/v1.1.7...HEAD +[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 [1.1.4]: https://github.com/taiki-e/pin-project/compare/v1.1.3...v1.1.4 diff --git a/Cargo.toml b/Cargo.toml index 5b00a408..da26bba5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pin-project" -version = "1.1.6" #publish:version +version = "1.1.7" #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.6", path = "pin-project-internal" } +pin-project-internal = { version = "=1.1.7", 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 3da31163..84fbe679 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.6" #publish:version +version = "1.1.7" #publish:version edition = "2021" rust-version = "1.56" license = "Apache-2.0 OR MIT"