Skip to content

Commit a69b300

Browse files
committed
Release 1.0.1
1 parent 315d10f commit a69b300

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

9-
* Fix warnings when `#[pin_project]` attribute used within `macro_rules!` macros.
9+
## [1.0.1] - 2020-10-15
10+
11+
* [Fix warnings when `#[pin_project]` attribute used within `macro_rules!` macros.](https://github.com/taiki-e/pin-project/pull/298)
1012

1113
## [1.0.0] - 2020-10-13
1214

@@ -639,7 +641,8 @@ See also [tracking issue for 0.4 release][21].
639641

640642
Initial release
641643

642-
[Unreleased]: https://github.com/taiki-e/pin-project/compare/v1.0.0...HEAD
644+
[Unreleased]: https://github.com/taiki-e/pin-project/compare/v1.0.1...HEAD
645+
[1.0.1]: https://github.com/taiki-e/pin-project/compare/v1.0.0...v1.0.1
643646
[1.0.0]: https://github.com/taiki-e/pin-project/compare/v1.0.0-alpha.1...v1.0.0
644647
[1.0.0-alpha.1]: https://github.com/taiki-e/pin-project/compare/v0.4.23...v1.0.0-alpha.1
645648
[0.4.27]: https://github.com/taiki-e/pin-project/compare/v0.4.26...v0.4.27

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pin-project"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
authors = ["Taiki Endo <te316e89@gmail.com>"]
55
edition = "2018"
66
license = "Apache-2.0 OR MIT"
@@ -29,7 +29,7 @@ members = [
2929
]
3030

3131
[dependencies]
32-
pin-project-internal = { version = "=1.0.0", path = "pin-project-internal", default-features = false }
32+
pin-project-internal = { version = "=1.0.1", path = "pin-project-internal", default-features = false }
3333

3434
[dev-dependencies]
3535
pin-project-auxiliary-macro = { version = "0", path = "tests/auxiliary/macro" }

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 = "1.0.0"
3+
version = "1.0.1"
44
authors = ["Taiki Endo <te316e89@gmail.com>"]
55
edition = "2018"
66
license = "Apache-2.0 OR MIT"
@@ -25,5 +25,5 @@ quote = "1"
2525
syn = { version = "1.0.44", features = ["full", "visit-mut"] }
2626

2727
[dev-dependencies]
28-
pin-project = { version = "1.0.0", path = ".." }
28+
pin-project = { version = "1.0.1", path = ".." }
2929
rustversion = "1"

pin-project-internal/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Implementation detail of the `pin-project` crate. - **do not use directly**
22
3-
#![doc(html_root_url = "https://docs.rs/pin-project-internal/1.0.0")]
3+
#![doc(html_root_url = "https://docs.rs/pin-project-internal/1.0.1")]
44
#![doc(test(
55
no_crate_inject,
66
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
@@ -65,7 +65,7 @@
6565
//! [struct-default-expanded]: https://github.com/taiki-e/pin-project/blob/master/examples/struct-default-expanded.rs
6666
6767
#![no_std]
68-
#![doc(html_root_url = "https://docs.rs/pin-project/1.0.0")]
68+
#![doc(html_root_url = "https://docs.rs/pin-project/1.0.1")]
6969
#![doc(test(
7070
no_crate_inject,
7171
attr(deny(warnings, rust_2018_idioms, single_use_lifetimes), allow(dead_code))

0 commit comments

Comments
 (0)