From 5bed0878e6cd7a3d25201d31f66387ca4099b96c Mon Sep 17 00:00:00 2001 From: CHB61 Date: Sat, 20 Mar 2021 11:57:43 -0400 Subject: [PATCH] update the version --- CHANGELOG.md | 4 ++++ README.md | 2 +- pubspec.yaml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d1c657d..d0299d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. +## [4.0.0] - 2021-03-20 +### Changed +- Added null safety. Thanks to @ihancock for taking the initiative to apply this. + ## [3.1.8] - 2021-02-15 ### Fixed - [Slow with big list](https://github.com/CHB61/multi_select_flutter/issues/18). Using a ListView.builder solves this but haven't found a way to use ListView.builder when the listType is set to MultiSelectListType.CHIP. Currently when this is set, the widget renders a Wrap inside of a SingleChildScrollView. For now, if you have a big list, do not use `MultiSelectListType.CHIP`. diff --git a/README.md b/README.md index a3e72a0..0434011 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Multi Select Flutter is a package for creating multi-select widgets in a variety Add this to your pubspec.yaml file: ```yaml dependencies: - multi_select_flutter: ^3.1.8 + multi_select_flutter: ^4.0.0 ``` ## Usage diff --git a/pubspec.yaml b/pubspec.yaml index ff74ba1..af813e1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: multi_select_flutter description: A flexible multi select package for Flutter. Make multi select widgets the way you want. -version: 3.1.8 +version: 4.0.0 repository: https://github.com/CHB61/flutter-multi-select issue_tracker: https://github.com/CHB61/flutter-multi-select documentation: https://github.com/CHB61/flutter-multi-select