Skip to content

Commit

Permalink
Fix min versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ueman committed Oct 21, 2023
1 parent e5ee81e commit 24b6742
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,6 @@ jobs:
uses: subosito/[email protected]
with:
cache: true
flutter-version: ${{ matrix.channel == 'min' && '3.10.0' || '' }}
flutter-version: ${{ matrix.channel == 'min' && '3.13.0' || '' }}
channel: ${{ matrix.channel == 'min' && 'stable' || matrix.channel }}
- run: flutter test
2 changes: 2 additions & 0 deletions plugins/native_dio_adapter/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
## Unreleased

- Bump `cronet_http` version.
- Minimal required Dart version is now 3.1
- Minimal required Flutter version is now 3.13.0

## 1.0.0+2

Expand Down
4 changes: 2 additions & 2 deletions plugins/native_dio_adapter/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ publish_to: 'none'
version: 1.0.0+1

environment:
sdk: '>=2.18.0 <3.0.0'
sdk: '>=3.1.0 <4.0.0'

dependencies:
flutter:
sdk: flutter
cupertino_icons: ^1.0.2
dio: ^5.0.0-0
dio: ^5.0.0
native_dio_adapter:
path:
../
Expand Down
4 changes: 2 additions & 2 deletions plugins/native_dio_adapter/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ repository: https://github.com/cfug/dio/blob/main/plugins/native_dio_adapter
issue_tracker: https://github.com/cfug/dio/issues

environment:
sdk: ">=3.0.0 <4.0.0"
flutter: ">=3.10.0"
sdk: ">=3.1.0 <4.0.0"
flutter: ">=3.13.0"

dependencies:
dio: ^5.2.0
Expand Down

0 comments on commit 24b6742

Please sign in to comment.