From cee4be270e609aee04ece74a7583a7f149ab580c Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Fri, 30 Jun 2023 02:33:37 +0900 Subject: [PATCH] Release 1.1.1 --- CHANGELOG.md | 5 ++++- Cargo.toml | 4 ++-- pin-project-internal/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f7c9e37..3b426934 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.1] - 2023-06-29 + - Fix build error from dependency when built with `-Z minimal-versions`. ## [1.1.0] - 2023-05-13 @@ -686,7 +688,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.0...HEAD +[Unreleased]: https://github.com/taiki-e/pin-project/compare/v1.1.1...HEAD +[1.1.1]: https://github.com/taiki-e/pin-project/compare/v1.1.0...v1.1.1 [1.1.0]: https://github.com/taiki-e/pin-project/compare/v1.0.12...v1.1.0 [1.0.12]: https://github.com/taiki-e/pin-project/compare/v1.0.11...v1.0.12 [1.0.11]: https://github.com/taiki-e/pin-project/compare/v1.0.10...v1.0.11 diff --git a/Cargo.toml b/Cargo.toml index e4a88353..2abc6e14 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pin-project" -version = "1.1.0" +version = "1.1.1" edition = "2018" rust-version = "1.56" license = "Apache-2.0 OR MIT" @@ -28,7 +28,7 @@ members = [ doc-scrape-examples = false [dependencies] -pin-project-internal = { version = "=1.1.0", path = "pin-project-internal" } +pin-project-internal = { version = "=1.1.1", 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 17a817e6..14a98fa3 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.0" +version = "1.1.1" edition = "2018" rust-version = "1.56" license = "Apache-2.0 OR MIT"