Skip to content

Commit

Permalink
Release 0.4.13
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed May 7, 2020
1 parent 0f498f4 commit 17e4fc3
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 8 deletions.
26 changes: 24 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,27 @@ This project adheres to [Semantic Versioning](https://semver.org).

## [Unreleased]

## [0.4.11] - 2020-05-07
## [0.4.13] - 2020-05-07

* [Fixed a regression in 0.4.11.][207]

Changes from [0.4.10](https://github.com/taiki-e/pin-project/releases/tag/v0.4.10):

* [Fixed an issue that `#[project]` on non-statement expression does not work without unstable features.][197]

* [Support overwriting the name of core crate.][199]

* Improve documentation

[207]: https://github.com/taiki-e/pin-project/pull/207

## [0.4.12] - 2020-05-07

* A release to avoid [a regression in 0.4.11][206]. No code changes from [0.4.10](https://github.com/taiki-e/pin-project/releases/tag/v0.4.10).

[206]: https://github.com/taiki-e/pin-project/issues/206

## [0.4.11] - 2020-05-07 - YANKED

* [Fixed an issue that `#[project]` on non-statement expression does not work without unstable features.][197]

Expand Down Expand Up @@ -339,7 +359,9 @@ See also [tracking issue for 0.4 release][21].

Initial release

[Unreleased]: https://github.com/taiki-e/pin-project/compare/v0.4.11...HEAD
[Unreleased]: https://github.com/taiki-e/pin-project/compare/v0.4.13...HEAD
[0.4.13]: https://github.com/taiki-e/pin-project/compare/v0.4.11...v0.4.13
[0.4.12]: https://github.com/taiki-e/pin-project/compare/v0.4.10...v0.4.12
[0.4.11]: https://github.com/taiki-e/pin-project/compare/v0.4.10...v0.4.11
[0.4.10]: https://github.com/taiki-e/pin-project/compare/v0.4.9...v0.4.10
[0.4.9]: https://github.com/taiki-e/pin-project/compare/v0.4.8...v0.4.9
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pin-project"
version = "0.4.11"
version = "0.4.13"
authors = ["Taiki Endo <[email protected]>"]
edition = "2018"
license = "Apache-2.0 OR MIT"
Expand All @@ -27,7 +27,7 @@ members = [
]

[dependencies]
pin-project-internal = { version = "=0.4.11", path = "pin-project-internal", default-features = false }
pin-project-internal = { version = "=0.4.13", path = "pin-project-internal", default-features = false }

[dev-dependencies]
auxiliary-macros = { version = "0.1", path = "tests/ui/auxiliary" }
Expand Down
4 changes: 2 additions & 2 deletions pin-project-internal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pin-project-internal"
version = "0.4.11"
version = "0.4.13"
authors = ["Taiki Endo <[email protected]>"]
edition = "2018"
license = "Apache-2.0 OR MIT"
Expand All @@ -25,5 +25,5 @@ quote = "1.0"
syn = { version = "1.0", features = ["full", "visit-mut"] }

[dev-dependencies]
pin-project = { version = "0.4.11", path = ".." }
pin-project = { version = "0.4.13", path = ".." }
rustversion = "1.0"
2 changes: 1 addition & 1 deletion pin-project-internal/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! An internal crate to support pin_project - **do not use directly**
#![recursion_limit = "256"]
#![doc(html_root_url = "https://docs.rs/pin-project-internal/0.4.11")]
#![doc(html_root_url = "https://docs.rs/pin-project-internal/0.4.13")]
#![doc(test(
no_crate_inject,
attr(deny(warnings, rust_2018_idioms, single_use_lifetimes), allow(dead_code))
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#![no_std]
#![recursion_limit = "256"]
#![doc(html_root_url = "https://docs.rs/pin-project/0.4.11")]
#![doc(html_root_url = "https://docs.rs/pin-project/0.4.13")]
#![doc(test(
no_crate_inject,
attr(deny(warnings, rust_2018_idioms, single_use_lifetimes), allow(dead_code))
Expand Down

0 comments on commit 17e4fc3

Please sign in to comment.