Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/workflows/very_good_flutter_plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@ jobs:
flutter-version:
# The version of Flutter to use should use the minimum Dart SDK version supported by the package,
# refer to https://docs.flutter.dev/development/tools/sdk/releases.
- "3.13.0"
- "3.19.0"
- "3.x"

platform:
- android
- ios
Expand All @@ -50,9 +51,6 @@ jobs:
run: |
dart pub global activate mason_cli
dart pub global activate very_good_cli
rm -rf mason.yaml
mason init
mason add very_good_flutter_plugin --path very_good_flutter_plugin
mason get
mason make very_good_flutter_plugin -c very_good_flutter_plugin/config.json -o output --on-conflict overwrite --platforms ${{ matrix.platform }}

Expand Down
4 changes: 2 additions & 2 deletions very_good_flutter_plugin/hooks/lib/version.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ library version;
const $templateVersion = '0.6.0';

/// The Flutter version associated with the template version.
const $flutterVersion = '3.13.2';
const $flutterVersion = '3.19.0';

/// The minimum Dart version required by the template.
///
Expand All @@ -18,4 +18,4 @@ const $flutterVersion = '3.13.2';
/// See also:
///
/// * [Flutter SDK archive](https://docs.flutter.dev/release/archive)
const $minDartVersion = '3.0.0';
const $minDartVersion = '3.3.0';
2 changes: 1 addition & 1 deletion very_good_flutter_plugin/hooks/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: very_good_flutter_plugin_hooks

environment:
sdk: ">=3.1.0 <4.0.0"
sdk: "^3.3.0"

dependencies:
mason: ^0.1.0-dev.50
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: merge_coverage
description: Merge coverage reports from multiple packages into a single report.

environment:
sdk: ">=3.1.0 <4.0.0"
sdk: "^3.3.0"

dev_dependencies:
very_good_analysis: ^5.1.0
Expand Down