Skip to content

Commit 55829b9

Browse files
committed
Release 1.1.3
1 parent 11960aa commit 55829b9

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
1010

1111
## [Unreleased]
1212

13+
## [1.1.3] - 2023-08-06
14+
1315
- Hide documentation of the `Unpin` implementation for `!Unpin` option to work around [rustdoc issue](https://github.com/rust-lang/rust/issues/80481). ([#355](https://github.com/taiki-e/pin-project/pull/355), thanks @matheus-consoli)
1416

1517
## [1.1.2] - 2023-07-02
@@ -694,7 +696,8 @@ See also [tracking issue for 0.4 release](https://github.com/taiki-e/pin-project
694696

695697
Initial release
696698

697-
[Unreleased]: https://github.com/taiki-e/pin-project/compare/v1.1.2...HEAD
699+
[Unreleased]: https://github.com/taiki-e/pin-project/compare/v1.1.3...HEAD
700+
[1.1.3]: https://github.com/taiki-e/pin-project/compare/v1.1.2...v1.1.3
698701
[1.1.2]: https://github.com/taiki-e/pin-project/compare/v1.1.1...v1.1.2
699702
[1.1.1]: https://github.com/taiki-e/pin-project/compare/v1.1.0...v1.1.1
700703
[1.1.0]: https://github.com/taiki-e/pin-project/compare/v1.0.12...v1.1.0

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.1.2"
3+
version = "1.1.3"
44
edition = "2021"
55
rust-version = "1.56"
66
license = "Apache-2.0 OR MIT"
@@ -29,7 +29,7 @@ members = [
2929
doc-scrape-examples = false
3030

3131
[dependencies]
32-
pin-project-internal = { version = "=1.1.2", path = "pin-project-internal" }
32+
pin-project-internal = { version = "=1.1.3", path = "pin-project-internal" }
3333

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

pin-project-internal/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pin-project-internal"
3-
version = "1.1.2"
3+
version = "1.1.3"
44
edition = "2021"
55
rust-version = "1.56"
66
license = "Apache-2.0 OR MIT"

0 commit comments

Comments
 (0)