Skip to content

Commit

Permalink
Merge pull request #3 from phntmxyz/update-core-to-3.0.0
Browse files Browse the repository at this point in the history
Update core to 3.0.0
  • Loading branch information
rehlma authored Jul 17, 2024
2 parents be8c821 + 30a919e commit 9d8f716
Show file tree
Hide file tree
Showing 13 changed files with 207 additions and 323 deletions.
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

0 comments on commit 9d8f716

Please sign in to comment.