diff --git a/CHANGELOG.md b/CHANGELOG.md index a8ccbeda..6551813d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,16 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org). + + ## [Unreleased] +## [1.0.3] - 2021-01-05 + +- Exclude unneeded files from crates.io. + ## [1.0.2] - 2020-11-18 - [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]. Initial release -[Unreleased]: https://github.com/taiki-e/pin-project/compare/v1.0.2...HEAD +[Unreleased]: https://github.com/taiki-e/pin-project/compare/v1.0.3...HEAD +[1.0.3]: https://github.com/taiki-e/pin-project/compare/v1.0.2...v1.0.3 [1.0.2]: https://github.com/taiki-e/pin-project/compare/v1.0.1...v1.0.2 [1.0.1]: https://github.com/taiki-e/pin-project/compare/v1.0.0...v1.0.1 [1.0.0]: https://github.com/taiki-e/pin-project/compare/v1.0.0-alpha.1...v1.0.0 diff --git a/Cargo.toml b/Cargo.toml index 298deace..401635cb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pin-project" -version = "1.0.2" +version = "1.0.3" authors = ["Taiki Endo "] edition = "2018" license = "Apache-2.0 OR MIT" @@ -29,7 +29,7 @@ members = [ ] [dependencies] -pin-project-internal = { version = "=1.0.2", path = "pin-project-internal", default-features = false } +pin-project-internal = { version = "=1.0.3", path = "pin-project-internal", default-features = false } [dev-dependencies] pin-project-auxiliary-macro = { path = "tests/auxiliary/macro" } diff --git a/pin-project-internal/Cargo.toml b/pin-project-internal/Cargo.toml index 1a930aa7..240a21d3 100644 --- a/pin-project-internal/Cargo.toml +++ b/pin-project-internal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pin-project-internal" -version = "1.0.2" +version = "1.0.3" authors = ["Taiki Endo "] edition = "2018" license = "Apache-2.0 OR MIT"