From 91816eda55d3cef0829f3f00241d7720b3b9966d Mon Sep 17 00:00:00 2001 From: Dimitrios Begnis Date: Thu, 27 Jun 2024 16:35:37 +0200 Subject: [PATCH] chore: release 6.0.0 --- CHANGELOG.md | 12 ++++++++++++ README.md | 2 +- example/pubspec.yaml | 1 - pubspec.yaml | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 52da224..7098f22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## [6.0.0] - 27.06.2024 +### Features: +* feat: interdependent items builder [GH-175](https://github.com/Dimibe/grouped_list/pull/175) +* feat: add groupStickyHeaderBuilder [GH-126](https://github.com/Dimibe/grouped_list/pull/126) +* feat: added footer widget [GH-189](https://github.com/Dimibe/grouped_list/pull/189) +* feat: group section style [GH-206](https://github.com/Dimibe/grouped_list/pull/206) + +### Bugfixes: +* fix: distinct key parent child [GH-171](https://github.com/Dimibe/grouped_list/pull/171) +* fix RangeError when _sortedElements is empty [GH-164](https://github.com/Dimibe/grouped_list/pull/164) +* fix: wrong initial sticky header [GH-198](https://github.com/Dimibe/grouped_list/pull/198) + ## [5.1.3] - 09.04.2023 * Prepare for dart 3 diff --git a/README.md b/README.md index ef7047a..c4e4533 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ A flutter `ListView` in which list items can be grouped to sections. Add the package to your pubspec.yaml: ```yaml - grouped_list: ^5.1.3 + grouped_list: ^6.0.0 ``` In your dart file, import the library: diff --git a/example/pubspec.yaml b/example/pubspec.yaml index 4eaade4..5dfc7cc 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -1,7 +1,6 @@ name: example description: grouped_list example. publish_to: 'none' -version: 2.0.0 environment: sdk: ">=2.17.0 <4.0.0" diff --git a/pubspec.yaml b/pubspec.yaml index 16b5ccb..fde8be9 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: 5.1.3 +version: 6.0.0 homepage: https://begnis.dev repository: https://github.com/Dimibe/grouped_list