-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(*): set minimum Dart SDK from 2.18 to 3.10 (#115)
- Loading branch information
1 parent
7888df9
commit 776eed5
Showing
8 changed files
with
12 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"flutterSdkVersion": "3.3.0" | ||
"flutterSdkVersion": "3.10.6" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"flutter": "3.3.0", | ||
"flutter": "3.10.6", | ||
"flavors": {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,13 +19,13 @@ concurrency: | |
env: | ||
# The minimum Flutter version that is supported by the packages. | ||
# | ||
# Uses Dart SDK v2.18.0 because it is the minimum version that supports | ||
MIN_FLUTTER_VERSION: 3.3.0 | ||
# Uses Dart SDK v3.0.6 because it is the minimum version that supports | ||
MIN_FLUTTER_VERSION: 3.10.6 | ||
# The minimum Dart version that is supported by the packages. | ||
# | ||
# Is also used in the Dart SDK matrix (needs to be updated there too, can't | ||
# use env var - see: https://stackoverflow.com/a/74073435/8358501) | ||
MIN_DART_VERSION: 2.18.0 | ||
MIN_DART_VERSION: 3.0.6 | ||
|
||
jobs: | ||
test: | ||
|
@@ -74,7 +74,7 @@ jobs: | |
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
sdk: [stable, beta, 2.18.0] | ||
sdk: [stable, beta, 3.0.6] | ||
fail-fast: false | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
@@ -136,9 +136,7 @@ jobs: | |
- uses: actions/checkout@v3 | ||
- uses: dart-lang/[email protected] | ||
with: | ||
# We need to use Dart SDK 2.18 to be able to get Melos v3 which is | ||
# need to run "melos run analyze:dart --no-select". | ||
sdk: 2.18.0 | ||
sdk: ${{ env.MIN_DART_VERSION }} | ||
|
||
- name: Install Melos | ||
run: dart pub global activate melos | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters