Skip to content

Commit

Permalink
v3.0.0
Browse files Browse the repository at this point in the history
- Dart 2.12.0:
  - Sound null safety compatibility.
  - Update CI dart commands.
  - sdk: '>=2.12.0 <3.0.0'
- intl: ^0.17.0
- resource_portable: ^3.0.0
- collection: ^1.15.0
- pedantic: ^1.11.0
- test: ^1.16.5
  • Loading branch information
gmpassos committed Mar 7, 2021
1 parent c7b0c47 commit efd0c56
Show file tree
Hide file tree
Showing 20 changed files with 1,175 additions and 1,152 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/dart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
- name: Dart version
run: dart --version
- name: Install dependencies
run: pub get
- name: dartfmt
run: dartfmt -n --set-exit-if-changed .
- name: dartanalyzer
run: dartanalyzer --fatal-infos --fatal-warnings .
run: dart pub get
- name: dart format
run: dart format -o none --set-exit-if-changed .
- name: dart analyze
run: dart analyze --fatal-infos --fatal-warnings .
- name: Run tests
run: pub run test
- name: publish --dry-run
run: pub publish --dry-run
run: dart test
- name: dart pub publish --dry-run
run: dart pub publish --dry-run

12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 3.0.0

- Dart 2.12.0:
- Sound null safety compatibility.
- Update CI dart commands.
- sdk: '>=2.12.0 <3.0.0'
- intl: ^0.17.0
- resource_portable: ^3.0.0
- collection: ^1.15.0
- pedantic: ^1.11.0
- test: ^1.16.5

## 2.5.26

- Optimize: `parseInt`, `parseDouble` and `parseNum`.
Expand Down
Loading

0 comments on commit efd0c56

Please sign in to comment.