Skip to content

Commit f86ea1b

Browse files
committed
Release 0.4.10
1 parent 52b9835 commit f86ea1b

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ This project adheres to [Semantic Versioning](https://semver.org).
66

77
## [Unreleased]
88

9+
## [0.4.10] - 2020-05-04
10+
11+
* [Added `project_replace` method and `#[project_replace]` attribute.][194]
12+
`project_replace` method is optional and can be enabled by passing the `Replace` argument to `#[pin_project]` attribute.
13+
See [the documentation](https://docs.rs/pin-project/0.4/pin_project/attr.pin_project.html#project_replace) for more details.
14+
15+
[194]: https://github.com/taiki-e/pin-project/pull/194
16+
917
## [0.4.9] - 2020-04-14
1018

1119
* [Fixed lifetime inference error when associated types are used in fields.][188]

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.9"
3+
version = "0.4.10"
44
authors = ["Taiki Endo <te316e89@gmail.com>"]
55
edition = "2018"
66
license = "Apache-2.0 OR MIT"
@@ -27,7 +27,7 @@ members = [
2727
]
2828

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

3232
[dev-dependencies]
3333
auxiliary-macros = { version = "0.1", path = "tests/ui/auxiliary" }

pin-project-internal/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pin-project-internal"
3-
version = "0.4.9"
3+
version = "0.4.10"
44
authors = ["Taiki Endo <te316e89@gmail.com>"]
55
edition = "2018"
66
license = "Apache-2.0 OR MIT"
@@ -25,5 +25,5 @@ quote = "1.0"
2525
syn = { version = "1.0", features = ["full", "visit-mut"] }
2626

2727
[dev-dependencies]
28-
pin-project = { version = "0.4.9", path = ".." }
28+
pin-project = { version = "0.4.10", path = ".." }
2929
rustversion = "1.0"

pin-project-internal/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! An internal crate to support pin_project - **do not use directly**
22
33
#![recursion_limit = "256"]
4-
#![doc(html_root_url = "https://docs.rs/pin-project-internal/0.4.9")]
4+
#![doc(html_root_url = "https://docs.rs/pin-project-internal/0.4.10")]
55
#![doc(test(
66
no_crate_inject,
77
attr(deny(warnings, rust_2018_idioms, single_use_lifetimes), allow(dead_code))

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
3535
#![no_std]
3636
#![recursion_limit = "256"]
37-
#![doc(html_root_url = "https://docs.rs/pin-project/0.4.9")]
37+
#![doc(html_root_url = "https://docs.rs/pin-project/0.4.10")]
3838
#![doc(test(
3939
no_crate_inject,
4040
attr(deny(warnings, rust_2018_idioms, single_use_lifetimes), allow(dead_code))

0 commit comments

Comments
 (0)