Skip to content

Commit

Permalink
Stable null-safety (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoc081098 authored Mar 21, 2021
1 parent 5de17a8 commit 0433d62
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/flutter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,21 @@ jobs:

- uses: subosito/[email protected]
with:
channel: 'dev'
channel: 'stable'

- name: Doctor
run: flutter doctor

- name: Install dependencies
run: flutter packages get

- name: Format
run: flutter format lib test --set-exit-if-changed

- name: Analyze
run: flutter analyze lib test

- name: Run tests
run: flutter test --coverage --coverage-path=lcov.info

- uses: codecov/codecov-action@v1
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.1.0 - Mar 21, 2021

* Stable release for null safety.

## 1.1.0-nullsafety.1 - Feb 14, 2021

* Update dependencies.
Expand Down
4 changes: 2 additions & 2 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ packages:
name: disposebag
url: "https://pub.dartlang.org"
source: hosted
version: "1.5.0-nullsafety.1"
version: "1.5.0"
fake_async:
dependency: transitive
description:
Expand Down Expand Up @@ -150,4 +150,4 @@ packages:
source: hosted
version: "2.1.0"
sdks:
dart: ">=2.12.0-0.0 <3.0.0"
dart: ">=2.12.0 <3.0.0"
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
name: flutter_disposebag
description: Automatically disposes StreamSubscription and closes Sink when disposing State<T>.
version: 1.1.0-nullsafety.1
version: 1.1.0
author: Petrus Nguyen Thai Hoc <[email protected]>
homepage: https://github.com/Flutter-Dart-Open-Source/flutter_disposebag.git
repository: https://github.com/Flutter-Dart-Open-Source/flutter_disposebag.git
issue_tracker: https://github.com/Flutter-Dart-Open-Source/flutter_disposebag/issues

environment:
sdk: '>=2.12.0-0 <3.0.0'
sdk: '>=2.12.0 <3.0.0'

dependencies:
meta: ^1.3.0
disposebag: ^1.5.0-nullsafety.1
disposebag: ^1.5.0
flutter:
sdk: flutter

Expand Down

0 comments on commit 0433d62

Please sign in to comment.