From b2bcc8db21fecf85262c2a847a435b8c06414f21 Mon Sep 17 00:00:00 2001 From: Dimitrios Begnis Date: Fri, 4 Feb 2022 16:13:54 +0100 Subject: [PATCH] Release 4.2.0 --- .github/workflows/main.yml | 2 +- CHANGELOG.md | 4 ++++ LICENSE | 2 +- README.md | 2 +- example/pubspec.lock | 2 +- pubspec.yaml | 2 +- 6 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5adbf93..43ae228 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,7 +3,7 @@ name: CI # Controls when the action will run. Triggers the workflow on push or pull request -# events but only for the master branch +# events but only for the main branch on: push: branches: [ main ] diff --git a/CHANGELOG.md b/CHANGELOG.md index 6bfee84..f5bcef6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [4.2.0] - 04.02.2022 + +* Bugfixes: Fix bug where item is rebuild every time state changes [Pull Request #132](https://github.com/Dimibe/grouped_list/pull/132) + ## [4.1.0] - 22.07.2021 * New feature: Silver support [Pull Request #112](https://github.com/Dimibe/grouped_list/pull/112) diff --git a/LICENSE b/LICENSE index e653f4a..4ef124b 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2021 Dimitrios Begnis +Copyright (c) 2022 Dimitrios Begnis Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 6095bd5..a004498 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ A flutter `ListView` in which list items can be grouped to sections. Add the package to your pubspec.yaml: ```yaml - grouped_list: ^4.1.0 + grouped_list: ^4.2.0 ``` In your dart file, import the library: diff --git a/example/pubspec.lock b/example/pubspec.lock index fa8c4b7..a318e75 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -66,7 +66,7 @@ packages: path: ".." relative: true source: path - version: "4.1.0" + version: "4.2.0" intl: dependency: "direct main" description: diff --git a/pubspec.yaml b/pubspec.yaml index cd70255..7f39cbb 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: 4.1.0 +version: 4.2.0 homepage: https://begnis.dev repository: https://github.com/Dimibe/grouped_list