Skip to content

Commit 7e6596f

Browse files
committed
Release 0.4.12
1 parent f86ea1b commit 7e6596f

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.4.12] - 2020-05-07
10+
11+
* Same as 0.4.10.
12+
913
## [0.4.10] - 2020-05-04
1014

1115
* [Added `project_replace` method and `#[project_replace]` attribute.][194]
@@ -329,6 +333,8 @@ See also [tracking issue for 0.4 release][21].
329333
Initial release
330334

331335
[Unreleased]: https://github.com/taiki-e/pin-project/compare/v0.4.9...HEAD
336+
[0.4.12]: https://github.com/taiki-e/pin-project/compare/v0.4.10...v0.4.12
337+
[0.4.10]: https://github.com/taiki-e/pin-project/compare/v0.4.9...v0.4.10
332338
[0.4.9]: https://github.com/taiki-e/pin-project/compare/v0.4.8...v0.4.9
333339
[0.4.8]: https://github.com/taiki-e/pin-project/compare/v0.4.7...v0.4.8
334340
[0.4.7]: https://github.com/taiki-e/pin-project/compare/v0.4.6...v0.4.7

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.10"
3+
version = "0.4.12"
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.10", path = "pin-project-internal", default-features = false }
30+
pin-project-internal = { version = "=0.4.12", 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.10"
3+
version = "0.4.12"
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.10", path = ".." }
28+
pin-project = { version = "0.4.12", 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.10")]
4+
#![doc(html_root_url = "https://docs.rs/pin-project-internal/0.4.12")]
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.10")]
37+
#![doc(html_root_url = "https://docs.rs/pin-project/0.4.12")]
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)