Skip to content

Commit

Permalink
Release 2.0.0-nullsafety.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimibe committed Aug 1, 2021
1 parent d74f5bc commit 27b5a27
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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/[email protected]
with:
channel: beta
- uses: subosito/[email protected]
- name: Install Dependencies
run: flutter packages get
- name: Format
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 27b5a27

Please sign in to comment.