From 24e822024b3832223ca679d0548187765bcc269c Mon Sep 17 00:00:00 2001 From: Chris Wong Date: Sat, 21 Aug 2021 17:25:33 +1000 Subject: [PATCH] Release 1.0.2 (#21) --- CHANGELOG.md | 18 ++++++------------ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 45123a8..45ee3c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,32 +1,26 @@ # 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.2] - 2021-08-21 +- Fix "trailing semicolon" warning for `let` statements with multiple patterns. + ## [1.0.1] - 2020-09-29 -### Fixed - Update GitHub links from lfairy → lambda-fairy. ## [1.0.0] - 2019-05-22 -### Changed -- Update minimum Rust version to 1.12.0. - -### Fixed +- **Breaking change:** Update minimum Rust version to 1.12.0. - 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.1...HEAD +[Unreleased]: https://github.com/lfairy/if_chain/compare/v1.0.2...HEAD +[1.0.2]: https://github.com/lfairy/if_chain/compare/v1.0.1...v1.0.2 [1.0.1]: https://github.com/lfairy/if_chain/compare/v1.0.0...v1.0.1 [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 diff --git a/Cargo.toml b/Cargo.toml index 978d520..ab56d9e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "if_chain" -version = "1.0.1" +version = "1.0.2" authors = ["Chris Wong "] license = "MIT/Apache-2.0"