Skip to content

Commit

Permalink
feat: bump min flutter version to 3.22.0 (#115)
Browse files Browse the repository at this point in the history
* feat: bump min flutter version to 3.22.0

Signed-off-by: Sahil Kumar <xdsahil@gmail.com>

* ci: update github action

Signed-off-by: Sahil Kumar <xdsahil@gmail.com>

---------

Signed-off-by: Sahil Kumar <xdsahil@gmail.com>
  • Loading branch information
xsahil03x authored Nov 16, 2024
1 parent 0d0f53c commit dc4cfaa
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/giffy_dialog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ 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.16.0"
- "3.22.0"
- "3.x"
runs-on: ubuntu-latest
steps:
Expand Down
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
## Upcoming

- Bump rive version to `^0.13.10`.
- Bump lottie version to `^3.1.0`.
- Bump minimum Flutter version to `3.22.0`.

## 2.2.0

- Fix `Image` is imported from both packages. [#110](https://github.com/xsahil03x/giffy_dialog/issues/110)

## 2.1.0

- Bump rive version to ^0.13.0.
- Bump lottie version to ^3.0.0.
- Bump minimum Flutter version to 3.16.0.
- Bump rive version to `^0.13.0`.
- Bump lottie version to `^3.0.0`.
- Bump minimum Flutter version to `3.16.0`.

## 2.0.0+2

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

environment:
sdk: ^3.2.0
flutter: ">=3.16.0"
sdk: ^3.4.0
flutter: ">=3.22.0"

dependencies:
flutter:
Expand Down
2 changes: 1 addition & 1 deletion lib/giffy_dialog.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
library;

export 'package:lottie/lottie.dart';
export 'package:rive/rive.dart';
export 'package:rive/rive.dart' hide Image;

export 'src/entry_animation.dart' show EntryAnimation;
export 'src/giffy_modal.dart' show GiffyDialog, GiffyBottomSheet;
2 changes: 1 addition & 1 deletion lib/src/giffy_bottom_sheet.dart
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ class GiffyBottomSheet extends StatelessWidget {

/// Creates an giffy bottom sheet which uses a [RiveAnimation] as the [giffy].
const GiffyBottomSheet.rive(
rive.RiveAnimation rive, {
RiveAnimation rive, {
super.key,
this.giffyBuilder = defaultGiffyBuilder,
this.giffyPadding,
Expand Down
2 changes: 1 addition & 1 deletion lib/src/giffy_dialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ class GiffyDialog extends StatelessWidget {

/// Creates a giffy dialog which uses a [RiveAnimation] as the [giffy].
const GiffyDialog.rive(
rive.RiveAnimation rive, {
RiveAnimation rive, {
super.key,
this.giffyBuilder = defaultGiffyBuilder,
this.giffyPadding,
Expand Down
2 changes: 1 addition & 1 deletion lib/src/giffy_modal.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import 'dart:ui';

import 'package:flutter/material.dart';
import 'package:lottie/lottie.dart';
import 'package:rive/rive.dart' as rive;
import 'package:rive/rive.dart' hide Image;

import 'entry_animation.dart';

Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ repository: https://github.com/xsahil03x/giffy_dialog
issue_tracker: https://github.com/xsahil03x/giffy_dialog/issues

environment:
sdk: ^3.2.0
flutter: ">=3.16.0"
sdk: ^3.4.0
flutter: ">=3.22.0"

dependencies:
flutter:
sdk: flutter
rive: ^0.13.0
rive: ^0.13.10
lottie: ^3.1.0

dev_dependencies:
Expand Down

0 comments on commit dc4cfaa

Please sign in to comment.