diff options
Diffstat (limited to 'vendor/if_chain/CHANGELOG.md')
-rw-r--r-- | vendor/if_chain/CHANGELOG.md | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/vendor/if_chain/CHANGELOG.md b/vendor/if_chain/CHANGELOG.md new file mode 100644 index 000000000..a49439b04 --- /dev/null +++ b/vendor/if_chain/CHANGELOG.md @@ -0,0 +1,28 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [1.0.0] - 2019-05-22 +### Changed +- Update minimum Rust version to 1.12.0. + +### Fixed +- Expand `if` and `if let` to their equivalent expressions instead of `match`. +- Work around an edge case regarding Rust's treatment of `block` matchers. + +## [0.1.3] - 2018-07-20 +### Added +- Add `local_inner_macros` attribute for compatibility with new-style macro imports. + +## [0.1.2] - 2017-02-17 +### Added +- Support `no_std`. + +[Unreleased]: https://github.com/lfairy/if_chain/compare/v1.0.0...HEAD +[1.0.0]: https://github.com/lfairy/if_chain/compare/v0.1.3...v1.0.0 +[0.1.3]: https://github.com/lfairy/if_chain/compare/v0.1.2...v0.1.3 +[0.1.2]: https://github.com/lfairy/if_chain/compare/v0.1.1...v0.1.2 |