Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.4.0 #109

Merged
merged 1 commit into from
Sep 25, 2019
Merged

Release 0.4.0 #109

merged 1 commit into from
Sep 25, 2019

Conversation

taiki-e
Copy link
Owner

@taiki-e taiki-e commented Sep 25, 2019

cc #21

Changes since the latest 0.3 release:

Changes since the 0.4.0-beta.1 release:

  • Fixed an issue that caused an error when using #[pin_project(UnsafeUnpin)] and not providing a manual UnsafeUnpin implementation on a type with no generics or lifetime. (Add a dummy lifetime to Wrapper #107)

@taiki-e taiki-e added this to the v0.4 milestone Sep 25, 2019
@taiki-e taiki-e force-pushed the next-version branch 2 times, most recently from db49f06 to 8d046a0 Compare September 25, 2019 16:26
@taiki-e
Copy link
Owner Author

taiki-e commented Sep 25, 2019

bors r+

bors bot added a commit that referenced this pull request Sep 25, 2019
109: Release 0.4.0 r=taiki-e a=taiki-e

cc #21

### Changes since the latest 0.3 release:

* **Pin projection has become a safe operation.** In the absence of other unsafe code that you write, it is impossible to cause undefined behavior. (#18)

* `#[unsafe_project]` attribute has been replaced with `#[pin_project]` attribute. (#18, #33)

* The `Unpin` argument has been removed - an `Unpin` impl is now generated by default. (#18)

* Drop impls must be specified with `#[pinned_drop]` instead of via a normal `Drop` impl. (#18, #33, #86)

* `Unpin` impls must be specified with an impl of `UnsafeUnpin`, instead of implementing the normal `Unpin` trait. (#18)

* `#[pin_project]` attribute now determines the visibility of the projection type/method is based on the original type. (#96)

* `#[pin_project]` can now be used for public type with private field types. (#53)

* `#[pin_project]` can now interoperate with `#[cfg()]`. (#77)

* Added `project_ref` method to `#[pin_project]` types. (#93)

* Added `#[project_ref]` attribute. (#93)

* Removed "project_attr" feature and always enable `#[project]` attribute. (#94)

* `#[project]` attribute can now be used for `impl` blocks. (#46)

* `#[project]` attribute can now be used for `use` statements. (#85)

* `#[project]` attribute now supports `match` expressions at the position of the initializer expression of `let` expressions. (#51)

### Changes since the 0.4.0-beta.1 release:

* Fixed an issue that caused an error when using `#[pin_project(UnsafeUnpin)]` and not providing a manual `UnsafeUnpin` implementation on a type with no generics or lifetime. (#107)


Co-authored-by: Taiki Endo <te316e89@gmail.com>
@bors
Copy link
Contributor

bors bot commented Sep 25, 2019

Build succeeded

  • taiki-e.pin-project

@bors bors bot merged commit da06894 into master Sep 25, 2019
@taiki-e taiki-e deleted the next-version branch September 25, 2019 16:36
@LucioFranco
Copy link
Sponsor

@taiki-e thank you for doing all this <3!

@taiki-e
Copy link
Owner Author

taiki-e commented Sep 25, 2019

@LucioFranco ❤️

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants