Skip to content

Commit d21bbea

Browse files
committed
Release 0.2.7
1 parent b82e17e commit d21bbea

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
1010

1111
## [Unreleased]
1212

13+
## [0.2.7] - 2021-06-26
14+
15+
- [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.
16+
1317
## [0.2.6] - 2021-03-04
1418

1519
- [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
184188

185189
Initial release
186190

187-
[Unreleased]: https://github.com/taiki-e/pin-project-lite/compare/v0.2.6...HEAD
191+
[Unreleased]: https://github.com/taiki-e/pin-project-lite/compare/v0.2.7...HEAD
192+
[0.2.7]: https://github.com/taiki-e/pin-project-lite/compare/v0.2.6...v0.2.7
188193
[0.2.6]: https://github.com/taiki-e/pin-project-lite/compare/v0.2.5...v0.2.6
189194
[0.2.5]: https://github.com/taiki-e/pin-project-lite/compare/v0.2.4...v0.2.5
190195
[0.2.4]: https://github.com/taiki-e/pin-project-lite/compare/v0.2.3...v0.2.4

Cargo.toml

+5-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pin-project-lite"
3-
version = "0.2.6"
3+
version = "0.2.7"
44
authors = ["Taiki Endo <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0 OR MIT"
@@ -13,18 +13,14 @@ description = """
1313
A lightweight version of pin-project written with declarative macros.
1414
"""
1515

16-
[package.metadata.docs.rs]
17-
targets = ["x86_64-unknown-linux-gnu"]
18-
1916
[workspace]
20-
members = [
21-
"tests/doc",
22-
"tests/no-core",
23-
"tests/no-std",
24-
]
17+
members = ["tests/doc", "tests/no-core", "tests/no-std"]
2518

2619
[dev-dependencies]
2720
macrotest = "1.0.8"
2821
rustversion = "1"
2922
static_assertions = "1"
3023
trybuild = "1"
24+
25+
[package.metadata.docs.rs]
26+
targets = ["x86_64-unknown-linux-gnu"]

0 commit comments

Comments
 (0)