From 545490a9bc104bbbcc40bf8b35fba01bf30a38c5 Mon Sep 17 00:00:00 2001 From: Anthony Whitford Date: Tue, 8 Dec 2020 09:54:31 -0800 Subject: [PATCH 1/2] Bumping version to 1.9.5. Updated Dart SDK constraint to be minimum 2.7 because extension methods are used. --- pubspec.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pubspec.yaml b/pubspec.yaml index 54a7db17..caf85587 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,10 +1,10 @@ name: flutter_chips_input description: Flutter library for building input fields with InputChips as input options. -version: 1.9.4 +version: 1.9.5 homepage: https://github.com/danvick/flutter_chips_input environment: - sdk: ">=2.6.0 <3.0.0" + sdk: ">=2.7.0 <3.0.0" dependencies: flutter: From d65cda438f0eab137aaf568bd8dc72c7707ea98b Mon Sep 17 00:00:00 2001 From: Anthony Whitford Date: Tue, 8 Dec 2020 10:15:47 -0800 Subject: [PATCH 2/2] Updated for 1.9.5 changes. --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb90799f..8d20701e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## [1.9.5] - 08-Dec-2020 + +- Fixed bug where `FocusNode` was not being properly disposed. +- Applied `pedantic` rules and cleaned up code. + - Improved type safety. + - Removed unused `AlwaysDisabledFocusNode` class. +- Added Continuous Integration and Code Coverage analysis. + - Builds against stable, beta, and dev channels. +- Regenerated `example` app. + ## [1.9.4] - 05-Sept-2020 * Fix bug where first chip disappears, replaced with typed character. Fixes #34