Skip to content

Commit

Permalink
Release 0.4.26
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Oct 4, 2020
1 parent 74570f7 commit db59688
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.)

Expand Down Expand Up @@ -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
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.25"
version = "0.4.26"
authors = ["Taiki Endo <[email protected]>"]
edition = "2018"
license = "Apache-2.0 OR MIT"
Expand Down Expand Up @@ -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" }
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.25"
version = "0.4.26"
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.13", features = ["full", "visit-mut"] }

[dev-dependencies]
pin-project = { version = "0.4.25", path = ".." }
pin-project = { version = "0.4.26", 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,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))
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit db59688

Please sign in to comment.