Skip to content

Commit 1cb267f

Browse files
committed
Release 0.4.29
1 parent c511a12 commit 1cb267f

File tree

3 files changed

+25
-16
lines changed

3 files changed

+25
-16
lines changed

CHANGELOG.md

+22-13
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,21 @@ All notable changes to this project will be documented in this file.
44

55
This project adheres to [Semantic Versioning](https://semver.org).
66

7+
<!--
8+
NOTE: In this file, do not use the hard wrap in the middle of a sentence for compatibility with GitHub comment style markdown rendering.
9+
-->
10+
711
## [Unreleased]
812

13+
## [0.4.29] - 2021-12-26
14+
15+
- [Fix compile error with `syn` 1.0.84 and later.](https://github.com/taiki-e/pin-project/pull/335)
16+
917
## [0.4.28] - 2021-03-28
1018

1119
- [Fix `unused_must_use` warning on unused borrows, which will be added to rustc in the future.](https://github.com/taiki-e/pin-project/pull/322) See [#322](https://github.com/taiki-e/pin-project/pull/322) for more details.
1220

13-
(Note: 1.0 does not have this problem.)
21+
(NOTE: 1.0 does not have this problem.)
1422

1523
## [0.4.27] - 2020-10-11
1624

@@ -24,13 +32,13 @@ This project adheres to [Semantic Versioning](https://semver.org).
2432

2533
- [Suppress `drop_bounds` lint, which will be added to rustc in the future.](https://github.com/taiki-e/pin-project/pull/273) See [#272](https://github.com/taiki-e/pin-project/issues/272) for more details.
2634

27-
(Note: 1.0.0-alpha.1 already contains this change.)
35+
(NOTE: 1.0.0-alpha.1 already contains this change.)
2836

2937
## [0.4.24] - 2020-09-26
3038

3139
- [Fix compatibility of generated code with `forbid(future_incompatible)`.](https://github.com/taiki-e/pin-project/pull/282)
3240

33-
Note: This does not guarantee compatibility with `forbid(future_incompatible)` in the future.
41+
NOTE: This does not guarantee compatibility with `forbid(future_incompatible)` in the future.
3442
If rustc adds a new lint, we may not be able to keep this.
3543

3644
## [0.4.23] - 2020-07-27
@@ -161,7 +169,7 @@ This project adheres to [Semantic Versioning](https://semver.org).
161169
}
162170
```
163171

164-
*[Note: This raises the minimum supported Rust version of this crate from Rust 1.33 to Rust 1.34.](https://github.com/taiki-e/pin-project/pull/219#pullrequestreview-408644187)*
172+
*[NOTE: This raises the minimum supported Rust version of this crate from Rust 1.33 to Rust 1.34.](https://github.com/taiki-e/pin-project/pull/219#pullrequestreview-408644187)*
165173

166174
- [Fix an issue where duplicate `#[project]` attributes were ignored.](https://github.com/taiki-e/pin-project/pull/218)
167175

@@ -195,7 +203,7 @@ This project adheres to [Semantic Versioning](https://semver.org).
195203

196204
## [0.4.11] - 2020-05-07
197205

198-
**Note: This release has been yanked.** See [#206](https://github.com/taiki-e/pin-project/issues/206) for details.
206+
**NOTE:** This release has been yanked. See [#206](https://github.com/taiki-e/pin-project/issues/206) for details.
199207

200208
- [Fix an issue that `#[project]` on non-statement expression does not work without unstable features.](https://github.com/taiki-e/pin-project/pull/197)
201209

@@ -249,7 +257,7 @@ This project adheres to [Semantic Versioning](https://semver.org).
249257

250258
## [0.4.3] - 2019-10-15
251259

252-
**Note: This release has been yanked.** See [#148](https://github.com/taiki-e/pin-project/pull/148) for details.
260+
**NOTE:** This release has been yanked. See [#148](https://github.com/taiki-e/pin-project/pull/148) for details.
253261

254262
- [`#[pin_project]` can now interoperate with `#[cfg_attr()]`.](https://github.com/taiki-e/pin-project/pull/135)
255263

@@ -261,19 +269,19 @@ This project adheres to [Semantic Versioning](https://semver.org).
261269

262270
## [0.4.2] - 2019-09-29
263271

264-
**Note: This release has been yanked.** See [#148](https://github.com/taiki-e/pin-project/pull/148) for details.
272+
**NOTE:** This release has been yanked. See [#148](https://github.com/taiki-e/pin-project/pull/148) for details.
265273

266274
- [Fix support for DSTs(Dynamically Sized Types).](https://github.com/taiki-e/pin-project/pull/113)
267275

268276
## [0.4.1] - 2019-09-26
269277

270-
**Note: This release has been yanked.** See [#148](https://github.com/taiki-e/pin-project/pull/148) for details.
278+
**NOTE:** This release has been yanked. See [#148](https://github.com/taiki-e/pin-project/pull/148) for details.
271279

272280
- [Fix an issue that caused an error when using `#[pin_project]` on a type that has `#[pin]` + `!Unpin` field with no generics or lifetime.](https://github.com/taiki-e/pin-project/pull/111)
273281

274282
## [0.4.0] - 2019-09-25
275283

276-
**Note: This release has been yanked.** See [#148](https://github.com/taiki-e/pin-project/pull/148) for details.
284+
**NOTE:** This release has been yanked. See [#148](https://github.com/taiki-e/pin-project/pull/148) for details.
277285

278286
- [**Pin projection has become a safe operation.**](https://github.com/taiki-e/pin-project/pull/18) In the absence of other unsafe code that you write, it is impossible to cause undefined behavior.
279287

@@ -402,7 +410,7 @@ Changes since the 0.4.0-beta.1 release:
402410

403411
- `Unpin` impls must be specified with an impl of `UnsafeUnpin`, instead of implementing the normal `Unpin` trait.
404412

405-
- Made `#[project]` attribute disabled by default.
413+
- Make `#[project]` attribute disabled by default.
406414

407415
See also [tracking issue for 0.4 release](https://github.com/taiki-e/pin-project/issues/21).
408416

@@ -416,7 +424,7 @@ See also [tracking issue for 0.4 release](https://github.com/taiki-e/pin-project
416424

417425
## [0.3.3] - 2019-07-15
418426

419-
**Note: This release has been yanked.** See [#16](https://github.com/taiki-e/pin-project/issues/16) for details.
427+
**NOTE:** This release has been yanked. See [#16](https://github.com/taiki-e/pin-project/issues/16) for details.
420428

421429
- Diagnostic improvements.
422430

@@ -490,11 +498,12 @@ See also [tracking issue for 0.4 release](https://github.com/taiki-e/pin-project
490498

491499
## [0.1.0] - 2019-01-08
492500

493-
**Note: This release has been yanked.**
501+
**NOTE:** This release has been yanked.
494502

495503
Initial release
496504

497-
[Unreleased]: https://github.com/taiki-e/pin-project/compare/v0.4.28...HEAD
505+
[Unreleased]: https://github.com/taiki-e/pin-project/compare/v0.4.29...v0.4
506+
[0.4.29]: https://github.com/taiki-e/pin-project/compare/v0.4.28...v0.4.29
498507
[0.4.28]: https://github.com/taiki-e/pin-project/compare/v0.4.27...v0.4.28
499508
[0.4.27]: https://github.com/taiki-e/pin-project/compare/v0.4.26...v0.4.27
500509
[0.4.26]: https://github.com/taiki-e/pin-project/compare/v0.4.25...v0.4.26

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pin-project"
3-
version = "0.4.28"
3+
version = "0.4.29"
44
edition = "2018"
55
rust-version = "1.34"
66
license = "Apache-2.0 OR MIT"
@@ -27,7 +27,7 @@ members = [
2727
]
2828

2929
[dependencies]
30-
pin-project-internal = { version = "=0.4.28", path = "pin-project-internal", default-features = false }
30+
pin-project-internal = { version = "=0.4.29", path = "pin-project-internal", default-features = false }
3131

3232
[dev-dependencies]
3333
pin-project-auxiliary-macro = { path = "tests/ui/auxiliary" }

pin-project-internal/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pin-project-internal"
3-
version = "0.4.28"
3+
version = "0.4.29"
44
edition = "2018"
55
rust-version = "1.34"
66
license = "Apache-2.0 OR MIT"

0 commit comments

Comments
 (0)