Skip to content

Commit

Permalink
Increase min SDK versions (#147)
Browse files Browse the repository at this point in the history
Increased the minimum Dart SDK version to 3.2.0 and the Flutter SDK
version to 3.16.0.
  • Loading branch information
fujidaiti authored May 30, 2024
1 parent d044cd7 commit dfdd849
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cookbook/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: "A new Flutter project."
publish_to: "none"

environment:
sdk: ">=3.2.3 <4.0.0"
sdk: ">=3.2.0 <4.0.0"

dependencies:
animations: ^2.0.10
Expand Down
13 changes: 10 additions & 3 deletions docs/migration-guide-0.7.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

Here is the summary of the breaking changes included in version 0.7.0.

- `SheetDragStartDetails` no longer implements `DragStartDetails`
- `SheetDragUpdateDetails` no longer implements `DragUpdateDetails`
- `SheetDragEndDetails` no longer implements `DragEndDetails`
## Changes in public APIs

- `SheetDragStartDetails` no longer implements `DragStartDetails`.
- `SheetDragUpdateDetails` no longer implements `DragUpdateDetails`.
- `SheetDragEndDetails` no longer implements `DragEndDetails`.

## miscellaneous

- Now the package requires Dart SDK `>= 3.2.0` and Flutter SDK `3.16.0`.

4 changes: 2 additions & 2 deletions package/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ screenshots:
path: resources/smooth-sheets-thumbnail.png

environment:
sdk: ">=3.0.6 <4.0.0"
flutter: ">=3.10.6"
sdk: ">=3.2.0 <4.0.0"
flutter: ">=3.16.0"

dependencies:
collection: ^1.17.1
Expand Down

0 comments on commit dfdd849

Please sign in to comment.