From d21bbea70a60718cc2ff67dc0e6a4049126ff9e6 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sat, 26 Jun 2021 16:00:36 +0900 Subject: [PATCH] Release 0.2.7 --- CHANGELOG.md | 7 ++++++- Cargo.toml | 14 +++++--------- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 666dd6b..aaa107b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,10 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com ## [Unreleased] +## [0.2.7] - 2021-06-26 + +- [Support custom Drop implementation.](https://github.com/taiki-e/pin-project-lite/pull/25) See [#25](https://github.com/taiki-e/pin-project-lite/pull/25) for details. + ## [0.2.6] - 2021-03-04 - [Support item attributes in any order.](https://github.com/taiki-e/pin-project-lite/pull/57) @@ -184,7 +188,8 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com Initial release -[Unreleased]: https://github.com/taiki-e/pin-project-lite/compare/v0.2.6...HEAD +[Unreleased]: https://github.com/taiki-e/pin-project-lite/compare/v0.2.7...HEAD +[0.2.7]: https://github.com/taiki-e/pin-project-lite/compare/v0.2.6...v0.2.7 [0.2.6]: https://github.com/taiki-e/pin-project-lite/compare/v0.2.5...v0.2.6 [0.2.5]: https://github.com/taiki-e/pin-project-lite/compare/v0.2.4...v0.2.5 [0.2.4]: https://github.com/taiki-e/pin-project-lite/compare/v0.2.3...v0.2.4 diff --git a/Cargo.toml b/Cargo.toml index 071c3ef..c22afad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pin-project-lite" -version = "0.2.6" +version = "0.2.7" authors = ["Taiki Endo "] edition = "2018" license = "Apache-2.0 OR MIT" @@ -13,18 +13,14 @@ description = """ A lightweight version of pin-project written with declarative macros. """ -[package.metadata.docs.rs] -targets = ["x86_64-unknown-linux-gnu"] - [workspace] -members = [ - "tests/doc", - "tests/no-core", - "tests/no-std", -] +members = ["tests/doc", "tests/no-core", "tests/no-std"] [dev-dependencies] macrotest = "1.0.8" rustversion = "1" static_assertions = "1" trybuild = "1" + +[package.metadata.docs.rs] +targets = ["x86_64-unknown-linux-gnu"]