Skip to content

Commit

Permalink
Update to latest lints, bump min SDK to 3.4, test wasm on 3.4 (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmoo committed Jun 10, 2024
1 parent 8fc4c72 commit 04807b6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/dart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
sdk: [3.0.0, dev]
sdk: [3.4, dev]
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
- uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
Expand All @@ -52,5 +52,4 @@ jobs:
- run: dart test --platform vm,chrome
- name: Run Chrome tests - wasm
run: dart test --platform chrome --compiler dart2wasm
# TODO: drop `dev` filter when dart2wasm is working on stable
if: always() && steps.install.outcome == 'success' && matrix.sdk == 'dev'
if: always() && steps.install.outcome == 'success'
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.9.1-wip

- Require Dart 3.4

## 1.9.0

* Allow percent-encoded colons (`%3a`) in drive letters in `fromUri`.
Expand Down
8 changes: 4 additions & 4 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: path
version: 1.9.0
version: 1.9.1-wip
description: >-
A string-based path manipulation library. All of the path operations you know
and love, with solid support for Windows, POSIX (Linux and Mac OS X), and the
Expand All @@ -10,8 +10,8 @@ topics:
- file-system

environment:
sdk: ^3.0.0
sdk: ^3.4.0

dev_dependencies:
dart_flutter_team_lints: ^2.0.0
test: ^1.16.0
dart_flutter_team_lints: ^3.0.0
test: ^1.16.6

0 comments on commit 04807b6

Please sign in to comment.