diff options
Diffstat (limited to 'third_party/rust/pin-project-lite/CHANGELOG.md')
-rw-r--r-- | third_party/rust/pin-project-lite/CHANGELOG.md | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/third_party/rust/pin-project-lite/CHANGELOG.md b/third_party/rust/pin-project-lite/CHANGELOG.md new file mode 100644 index 0000000000..769ef91b21 --- /dev/null +++ b/third_party/rust/pin-project-lite/CHANGELOG.md @@ -0,0 +1,42 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +This project adheres to [Semantic Versioning](https://semver.org). + +## [Unreleased] + +## [0.1.4] - 2020-01-20 + +* [Support ?Sized bounds in generic parameters.][9] + +[9]: https://github.com/taiki-e/pin-project-lite/pull/9 + +## [0.1.3] - 2020-01-20 + +* [Support lifetime bounds in generic parameters.][7] + +[7]: https://github.com/taiki-e/pin-project-lite/pull/7 + +## [0.1.2] - 2020-01-05 + +* [Support recognizing default generic parameters.][6] + +[6]: https://github.com/taiki-e/pin-project-lite/pull/6 + +## [0.1.1] - 2019-11-15 + +* [`pin_project!` macro now determines the visibility of the projection type/method is based on the original type.][5] + +[5]: https://github.com/taiki-e/pin-project-lite/pull/5 + +## [0.1.0] - 2019-10-22 + +Initial release + +[Unreleased]: https://github.com/taiki-e/pin-project-lite/compare/v0.1.4...HEAD +[0.1.4]: https://github.com/taiki-e/pin-project-lite/compare/v0.1.3...v0.1.4 +[0.1.3]: https://github.com/taiki-e/pin-project-lite/compare/v0.1.2...v0.1.3 +[0.1.2]: https://github.com/taiki-e/pin-project-lite/compare/v0.1.1...v0.1.2 +[0.1.1]: https://github.com/taiki-e/pin-project-lite/compare/v0.1.0...v0.1.1 +[0.1.0]: https://github.com/taiki-e/pin-project-lite/releases/tag/v0.1.0 |