Skip to content

Commit b450354

Browse files
committed
Release 0.4.8
1 parent 7958f76 commit b450354

File tree

5 files changed

+14
-7
lines changed

5 files changed

+14
-7
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ This project adheres to [Semantic Versioning](https://semver.org).
66

77
## [Unreleased]
88

9+
## [0.4.8] - 2020-01-27
10+
11+
* [Ensured that users cannot implement `PinnedDrop` without proper attribute argument.][180]
12+
13+
[180]: https://github.com/taiki-e/pin-project/pull/180
14+
915
## [0.4.7] - 2020-01-20
1016

1117
* [Fixed support for lifetime bounds.][176]
@@ -302,7 +308,8 @@ See also [tracking issue for 0.4 release][21].
302308

303309
Initial release
304310

305-
[Unreleased]: https://github.com/taiki-e/pin-project/compare/v0.4.7...HEAD
311+
[Unreleased]: https://github.com/taiki-e/pin-project/compare/v0.4.8...HEAD
312+
[0.4.8]: https://github.com/taiki-e/pin-project/compare/v0.4.7...v0.4.8
306313
[0.4.7]: https://github.com/taiki-e/pin-project/compare/v0.4.6...v0.4.7
307314
[0.4.6]: https://github.com/taiki-e/pin-project/compare/v0.4.5...v0.4.6
308315
[0.4.5]: https://github.com/taiki-e/pin-project/compare/v0.4.4...v0.4.5

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pin-project"
3-
version = "0.4.7"
3+
version = "0.4.8"
44
authors = ["Taiki Endo <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0 OR MIT"
@@ -22,7 +22,7 @@ members = [
2222
]
2323

2424
[dependencies]
25-
pin-project-internal = { version = "=0.4.7", path = "pin-project-internal", default-features = false }
25+
pin-project-internal = { version = "=0.4.8", path = "pin-project-internal", default-features = false }
2626

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

pin-project-internal/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pin-project-internal"
3-
version = "0.4.7"
3+
version = "0.4.8"
44
authors = ["Taiki Endo <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0 OR MIT"
@@ -22,5 +22,5 @@ quote = "1.0"
2222
syn = { version = "1.0", features = ["full", "visit-mut"] }
2323

2424
[dev-dependencies]
25-
pin-project = { version = "0.4.7", path = ".." }
25+
pin-project = { version = "0.4.8", path = ".." }
2626
rustversion = "1.0"

pin-project-internal/src/lib.rs

Lines changed: 1 addition & 1 deletion
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.7")]
4+
#![doc(html_root_url = "https://docs.rs/pin-project-internal/0.4.8")]
55
#![doc(test(
66
no_crate_inject,
77
attr(deny(warnings, rust_2018_idioms, single_use_lifetimes), allow(dead_code))

src/lib.rs

Lines changed: 1 addition & 1 deletion
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.7")]
37+
#![doc(html_root_url = "https://docs.rs/pin-project/0.4.8")]
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)