diff --git a/CHANGELOG.md b/CHANGELOG.md index ca66e6b5..c2f51cb3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,13 @@ This project adheres to [Semantic Versioning](https://semver.org). ## [Unreleased] +## [0.4.26] - 2020-10-04 + +* [Fix drop order of pinned fields in project_replace](https://github.com/taiki-e/pin-project/pull/287) + ## [0.4.25] - 2020-10-01 -* Fix compatibility with `drop_bounds` lint, which will be added to rustc in the future. See [#272](https://github.com/taiki-e/pin-project/issues/272) for more details. +* Suppress `drop_bounds` lint, which will be added to rustc in the future. See [#272](https://github.com/taiki-e/pin-project/issues/272) for more details. (Note: 1.0.0-alpha.1 already contains this change.) @@ -566,7 +570,8 @@ See also [tracking issue for 0.4 release][21]. Initial release -[Unreleased]: https://github.com/taiki-e/pin-project/compare/v0.4.25...HEAD +[Unreleased]: https://github.com/taiki-e/pin-project/compare/v0.4.26...HEAD +[0.4.26]: https://github.com/taiki-e/pin-project/compare/v0.4.25...v0.4.26 [0.4.25]: https://github.com/taiki-e/pin-project/compare/v0.4.24...v0.4.25 [0.4.24]: https://github.com/taiki-e/pin-project/compare/v0.4.23...v0.4.24 [0.4.23]: https://github.com/taiki-e/pin-project/compare/v0.4.22...v0.4.23 diff --git a/Cargo.toml b/Cargo.toml index ec0e61f8..6469c5b3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pin-project" -version = "0.4.25" +version = "0.4.26" authors = ["Taiki Endo "] edition = "2018" license = "Apache-2.0 OR MIT" @@ -29,7 +29,7 @@ members = [ ] [dependencies] -pin-project-internal = { version = "=0.4.25", path = "pin-project-internal", default-features = false } +pin-project-internal = { version = "=0.4.26", path = "pin-project-internal", default-features = false } [dev-dependencies] pin-project-auxiliary-macro = { version = "0", path = "tests/ui/auxiliary" } diff --git a/pin-project-internal/Cargo.toml b/pin-project-internal/Cargo.toml index 332f1e57..207fc975 100644 --- a/pin-project-internal/Cargo.toml +++ b/pin-project-internal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pin-project-internal" -version = "0.4.25" +version = "0.4.26" authors = ["Taiki Endo "] edition = "2018" license = "Apache-2.0 OR MIT" @@ -25,5 +25,5 @@ quote = "1.0" syn = { version = "1.0.13", features = ["full", "visit-mut"] } [dev-dependencies] -pin-project = { version = "0.4.25", path = ".." } +pin-project = { version = "0.4.26", path = ".." } rustversion = "1.0" diff --git a/pin-project-internal/src/lib.rs b/pin-project-internal/src/lib.rs index 489988db..0e0f1ed7 100644 --- a/pin-project-internal/src/lib.rs +++ b/pin-project-internal/src/lib.rs @@ -1,6 +1,6 @@ //! An internal crate to support pin_project - **do not use directly** -#![doc(html_root_url = "https://docs.rs/pin-project-internal/0.4.25")] +#![doc(html_root_url = "https://docs.rs/pin-project-internal/0.4.26")] #![doc(test( no_crate_inject, attr(deny(warnings, rust_2018_idioms, single_use_lifetimes), allow(dead_code)) diff --git a/src/lib.rs b/src/lib.rs index 249b5de6..b993cf87 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -36,7 +36,7 @@ //! [struct-default-expanded]: https://github.com/taiki-e/pin-project/blob/master/examples/struct-default-expanded.rs #![no_std] -#![doc(html_root_url = "https://docs.rs/pin-project/0.4.25")] +#![doc(html_root_url = "https://docs.rs/pin-project/0.4.26")] #![doc(test( no_crate_inject, attr(deny(warnings, rust_2018_idioms, single_use_lifetimes), allow(dead_code))