Skip to content

Commit eaebdd6

Browse files
committed
Release 1.0.3
1 parent a1a876e commit eaebdd6

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,16 @@ All notable changes to this project will be documented in this file.
44

55
This project adheres to [Semantic Versioning](https://semver.org).
66

7+
<!--
8+
Note: In this file, do not use the hard wrap in the middle of a sentence for compatibility with GitHub comment style markdown rendering.
9+
-->
10+
711
## [Unreleased]
812

13+
## [1.0.3] - 2021-01-05
14+
15+
- Exclude unneeded files from crates.io.
16+
917
## [1.0.2] - 2020-11-18
1018

1119
- [Suppress `clippy::unknown_clippy_lints` lint in generated code.](https://github.com/taiki-e/pin-project/pull/303)
@@ -663,7 +671,8 @@ See also [tracking issue for 0.4 release][21].
663671

664672
Initial release
665673

666-
[Unreleased]: https://github.com/taiki-e/pin-project/compare/v1.0.2...HEAD
674+
[Unreleased]: https://github.com/taiki-e/pin-project/compare/v1.0.3...HEAD
675+
[1.0.3]: https://github.com/taiki-e/pin-project/compare/v1.0.2...v1.0.3
667676
[1.0.2]: https://github.com/taiki-e/pin-project/compare/v1.0.1...v1.0.2
668677
[1.0.1]: https://github.com/taiki-e/pin-project/compare/v1.0.0...v1.0.1
669678
[1.0.0]: https://github.com/taiki-e/pin-project/compare/v1.0.0-alpha.1...v1.0.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.0.2"
3+
version = "1.0.3"
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.2", path = "pin-project-internal", default-features = false }
32+
pin-project-internal = { version = "=1.0.3", path = "pin-project-internal", default-features = false }
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.0.2"
3+
version = "1.0.3"
44
authors = ["Taiki Endo <te316e89@gmail.com>"]
55
edition = "2018"
66
license = "Apache-2.0 OR MIT"

0 commit comments

Comments
 (0)