Skip to content

Commit

Permalink
[various] prepare for 18.0.0 release (#2442)
Browse files Browse the repository at this point in the history
* prepare platform interface for release

* prepare linux plugin for release

* prepare cross-platform plugin for release
  • Loading branch information
MaikuB authored Nov 3, 2024
1 parent 15fe930 commit 94a1170
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 17 deletions.
11 changes: 2 additions & 9 deletions flutter_local_notifications/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,4 @@
## [18.0.0-dev.3]

* Included changes from 17.2.4 release that was done to add in a privacy manifest file to macOS implementation

## [18.0.0-dev.2]

* [iOS] **Breaking change** Removed `onDidReceiveLocalNotification` callback as this was only relevant on iOS versions older than 10

## [18.0.0-dev.1]
## [18.0.0]

* **Breaking changes** Bumped minimum Flutter SDK requirement to 3.13. Consequently the minimum OS requirements for each platform has been updated as well
* [Android] minimum Android version is now 4.4 (API level 19)
Expand All @@ -17,6 +9,7 @@
* [Android] `AndroidFlutterLocalNotificationsPlugin`
* [iOS] `IOSFlutterLocalNotificationsPlugin`
* [macOS] `MacOSFlutterLocalNotificationsPlugin`
* [iOS] **Breaking change** Removed `onDidReceiveLocalNotification` callback as this was only relevant on iOS versions older than 10
* Fixed example app to have the appropriate permissions for foreground services
* Updated readme when it comes to setting up the `AndroidManifest.xml` file to include details of what's needed for foreground services. Note these details were already available in the API docs

Expand Down
6 changes: 3 additions & 3 deletions flutter_local_notifications/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ name: flutter_local_notifications
description: A cross platform plugin for displaying and scheduling local
notifications for Flutter applications with the ability to customise for each
platform.
version: 18.0.0-dev.3
version: 18.0.0
homepage: https://github.com/MaikuB/flutter_local_notifications/tree/master/flutter_local_notifications
issue_tracker: https://github.com/MaikuB/flutter_local_notifications/issues

dependencies:
clock: ^1.1.0
flutter:
sdk: flutter
flutter_local_notifications_linux: ^5.0.0-dev.1
flutter_local_notifications_platform_interface: ^8.0.0-dev.1
flutter_local_notifications_linux: ^5.0.0
flutter_local_notifications_platform_interface: ^8.0.0
timezone: ^0.9.0

dev_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion flutter_local_notifications_linux/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## [5.0.0-dev.1]
## [5.0.0]

* **Breaking change** Bumped minimum Flutter SDK requirement to 3.13

Expand Down
4 changes: 2 additions & 2 deletions flutter_local_notifications_linux/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_local_notifications_linux
description: Linux implementation of the flutter_local_notifications plugin
version: 5.0.0-dev.1
version: 5.0.0
homepage: https://github.com/MaikuB/flutter_local_notifications/tree/master/flutter_local_notifications

flutter:
Expand All @@ -16,7 +16,7 @@ dependencies:
ffi: ^2.0.1
flutter:
sdk: flutter
flutter_local_notifications_platform_interface: ^8.0.0-dev.1
flutter_local_notifications_platform_interface: ^8.0.0
path: ^1.8.0
xdg_directories: ">=0.2.0+1 <2.0.0"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## [8.0.0-dev.1]
## [8.0.0]

* **Breaking change** Bumped minimum Flutter SDK requirement to 3.13

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_local_notifications_platform_interface
description: A common platform interface for the flutter_local_notifications plugin.
version: 8.0.0-dev.1
version: 8.0.0
homepage: https://github.com/MaikuB/flutter_local_notifications/tree/master/flutter_local_notifications_platform_interface

environment:
Expand Down

0 comments on commit 94a1170

Please sign in to comment.