From 3e137efe5ac3553164b794e225da9c44633186af Mon Sep 17 00:00:00 2001 From: Dimitrios Begnis Date: Sat, 19 Sep 2020 13:54:14 +0200 Subject: [PATCH] Release 3.5.0 --- CHANGELOG.md | 4 ++++ README.md | 2 +- example/pubspec.lock | 2 +- pubspec.yaml | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cfd27b..7937ed1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [3.5.0] - 19.09.2020 + +* New feature custom sorting. Added two new options `groupComparator` and `itemComparator`which can be used for comparison between two groups and items. If used the functions will be used for sorting the list. + ## [3.4.0] - 06.09.2020 * New option `groupHeaderBuilder`: Same as `groupSeparatorBuilder` but will get the whole element instead of just the groupBy value. diff --git a/README.md b/README.md index b2941fe..45ff8c4 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ A flutter `ListView` in which list items can be grouped to sections. Add the package to your pubspec.yaml: ```yaml - grouped_list: ^3.4.0 + grouped_list: ^3.5.0 ``` In your dart file, import the library: diff --git a/example/pubspec.lock b/example/pubspec.lock index 840b6cc..137263b 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -66,7 +66,7 @@ packages: path: ".." relative: true source: path - version: "3.4.0" + version: "3.5.0" matcher: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index 0e76eca..ee5e588 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: grouped_list description: A Flutter ListView where the list items can be grouped into sections. -version: 3.4.0 +version: 3.5.0 homepage: https://begnis.dev repository: https://github.com/Dimibe/grouped_list