From 27b5a27a21f07a83bd4745f87281f05f82cf5b08 Mon Sep 17 00:00:00 2001 From: Dimitrios Begnis Date: Sun, 1 Aug 2021 12:57:55 +0200 Subject: [PATCH] Release 2.0.0-nullsafety.2 --- .github/workflows/main.yml | 10 ++++------ CHANGELOG.md | 5 ++++- README.md | 2 +- example/pubspec.lock | 2 +- pubspec.yaml | 2 +- 5 files changed, 11 insertions(+), 10 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9d86f5d..43ae228 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,12 +3,12 @@ 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: [ master, feature/null-safety ] + branches: [ main ] pull_request: - branches: [ master, feature/null-safety ] + branches: [ main ] # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: @@ -20,9 +20,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: - uses: actions/checkout@v2 - - uses: subosito/flutter-action@v1.4.0 - with: - channel: beta + - uses: subosito/flutter-action@v1.5.3 - name: Install Dependencies run: flutter packages get - name: Format diff --git a/CHANGELOG.md b/CHANGELOG.md index 9df067d..dfa26b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,12 @@ +## [2.0.0-nullsafety.2] - 01.08.2021 + +* Fixed bug + ## [2.0.0-nullsafety.1] - 28.03.2021 * Refactor code smells ## [2.0.0-nullsafety.0] - 28.03.2021 - * Sound null-safety ## [1.3.0] - 15.11.2020 diff --git a/README.md b/README.md index 77cfa9a..80b0f32 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ The list will be scrolled to the end in the initial state and therefore scrollin Add the package to your pubspec.yaml: ```yaml - sticky_grouped_list: ^2.0.0-nullsafety.1 + sticky_grouped_list: ^2.0.0-nullsafety.2 ``` In your dart file, import the library: diff --git a/example/pubspec.lock b/example/pubspec.lock index f57fcc1..9e47f55 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -120,7 +120,7 @@ packages: path: ".." relative: true source: path - version: "2.0.0-nullsafety.1" + version: "2.0.0-nullsafety.2" stream_channel: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index a3ced0d..7cabc01 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: sticky_grouped_list description: A ScrollablePositionedList where the list items can be grouped into sections. -version: 2.0.0-nullsafety.1 +version: 2.0.0-nullsafety.2 homepage: https://begnis.dev repository: https://github.com/Dimibe/sticky_grouped_list