From a923fc684dc4ae4897263ca0189ae4c6cb73ebe8 Mon Sep 17 00:00:00 2001 From: Michael Bui <25263378+MaikuB@users.noreply.github.com> Date: Sat, 26 Nov 2022 21:16:01 +1100 Subject: [PATCH] bump linux plugin's Flutter version requirement to 3.0.0 and add explicit ffi dependency (#1812) --- flutter_local_notifications_linux/CHANGELOG.md | 5 +++++ flutter_local_notifications_linux/pubspec.yaml | 9 +++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/flutter_local_notifications_linux/CHANGELOG.md b/flutter_local_notifications_linux/CHANGELOG.md index 5a1ce9180..61ebb3152 100644 --- a/flutter_local_notifications_linux/CHANGELOG.md +++ b/flutter_local_notifications_linux/CHANGELOG.md @@ -1,3 +1,8 @@ +## [3.0.0] + +* Updated minimum Flutter version to 3.0.0. Note that technically this was already a requirement by `flutter_local_notifications_linux` 2.0.0 as `ffi` 2.0.0 requires Dart 2.17 at a minimum and that shipped with Flutter 3.0.0 +* Added explicit `ffi` dependency that plugin was already using + ## [2.0.0] * Bumped `dbus` dependency diff --git a/flutter_local_notifications_linux/pubspec.yaml b/flutter_local_notifications_linux/pubspec.yaml index 0f6a78359..b33c5a0a6 100644 --- a/flutter_local_notifications_linux/pubspec.yaml +++ b/flutter_local_notifications_linux/pubspec.yaml @@ -1,13 +1,14 @@ name: flutter_local_notifications_linux description: Linux implementation of the flutter_local_notifications plugin -version: 2.0.0 +version: 3.0.0 homepage: https://github.com/MaikuB/flutter_local_notifications/tree/master/flutter_local_notifications dependencies: + dbus: ^0.7.8 + ffi: ^2.0.1 flutter: sdk: flutter flutter_local_notifications_platform_interface: ^6.0.0 - dbus: ^0.7.8 path: ^1.8.0 xdg_directories: ^0.2.0+1 @@ -17,5 +18,5 @@ dev_dependencies: mocktail: ^0.3.0 environment: - sdk: ">=2.15.0 <3.0.0" - flutter: ">=2.8.0" + sdk: ">=2.17.0 <3.0.0" + flutter: ">=3.0.0"