Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update core to 3.0.0 #3

Merged
merged 11 commits into from
Jul 17, 2024
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
14 changes: 14 additions & 0 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@ name: Integration Tests
on: [ push ]

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.22.0'
channel: 'stable'

- uses: actions/checkout@v4

- name: Run tests
run: dart test

build:
runs-on: ubuntu-latest

Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 1.0.0

- Update to Sidekick 3.0
- Update dcli to 4.0.4
- Min Dart version is now 3.3.0

## 0.1.0

- Initial plugin version installing `puro`
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ The plugin interprets Flutter and Dart version constraints and defaults to the m
name: package_name

environment:
sdk: '>=3.0.0 <4.0.0'
sdk: '>=3.3.0 <4.0.0'
```

```bash
Expand All @@ -51,7 +51,7 @@ name: package_name

environment:
flutter: '^3.19.6'
sdk: '>=3.0.0 <4.0.0'
sdk: '>=3.3.0 <4.0.0'
```

```bash
Expand Down
2 changes: 1 addition & 1 deletion ci_test/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
version: 1.0.0+1

environment:
sdk: "3.3.0"
sdk: "3.4.0"

dependencies:
flutter:
Expand Down
2 changes: 1 addition & 1 deletion ci_test/skt_sidekick/lib/skt_sidekick.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Future<void> runSkt(List<String> args) async {
mainProjectPath: '.',
flutterSdkPath: flutterSdkSymlink(),
);
addFlutterSdkInitializer(initializePuro);
addSdkInitializer(initializePuro);

runner
..addCommand(FlutterCommand())
Expand Down
Loading