Skip to content

Commit 94a1170

Browse files
authored
[various] prepare for 18.0.0 release (#2442)
* prepare platform interface for release * prepare linux plugin for release * prepare cross-platform plugin for release
1 parent 15fe930 commit 94a1170

File tree

6 files changed

+10
-17
lines changed

6 files changed

+10
-17
lines changed

flutter_local_notifications/CHANGELOG.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,4 @@
1-
## [18.0.0-dev.3]
2-
3-
* Included changes from 17.2.4 release that was done to add in a privacy manifest file to macOS implementation
4-
5-
## [18.0.0-dev.2]
6-
7-
* [iOS] **Breaking change** Removed `onDidReceiveLocalNotification` callback as this was only relevant on iOS versions older than 10
8-
9-
## [18.0.0-dev.1]
1+
## [18.0.0]
102

113
* **Breaking changes** Bumped minimum Flutter SDK requirement to 3.13. Consequently the minimum OS requirements for each platform has been updated as well
124
* [Android] minimum Android version is now 4.4 (API level 19)
@@ -17,6 +9,7 @@
179
* [Android] `AndroidFlutterLocalNotificationsPlugin`
1810
* [iOS] `IOSFlutterLocalNotificationsPlugin`
1911
* [macOS] `MacOSFlutterLocalNotificationsPlugin`
12+
* [iOS] **Breaking change** Removed `onDidReceiveLocalNotification` callback as this was only relevant on iOS versions older than 10
2013
* Fixed example app to have the appropriate permissions for foreground services
2114
* 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
2215

flutter_local_notifications/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ name: flutter_local_notifications
22
description: A cross platform plugin for displaying and scheduling local
33
notifications for Flutter applications with the ability to customise for each
44
platform.
5-
version: 18.0.0-dev.3
5+
version: 18.0.0
66
homepage: https://github.com/MaikuB/flutter_local_notifications/tree/master/flutter_local_notifications
77
issue_tracker: https://github.com/MaikuB/flutter_local_notifications/issues
88

99
dependencies:
1010
clock: ^1.1.0
1111
flutter:
1212
sdk: flutter
13-
flutter_local_notifications_linux: ^5.0.0-dev.1
14-
flutter_local_notifications_platform_interface: ^8.0.0-dev.1
13+
flutter_local_notifications_linux: ^5.0.0
14+
flutter_local_notifications_platform_interface: ^8.0.0
1515
timezone: ^0.9.0
1616

1717
dev_dependencies:

flutter_local_notifications_linux/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## [5.0.0-dev.1]
1+
## [5.0.0]
22

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

flutter_local_notifications_linux/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_local_notifications_linux
22
description: Linux implementation of the flutter_local_notifications plugin
3-
version: 5.0.0-dev.1
3+
version: 5.0.0
44
homepage: https://github.com/MaikuB/flutter_local_notifications/tree/master/flutter_local_notifications
55

66
flutter:
@@ -16,7 +16,7 @@ dependencies:
1616
ffi: ^2.0.1
1717
flutter:
1818
sdk: flutter
19-
flutter_local_notifications_platform_interface: ^8.0.0-dev.1
19+
flutter_local_notifications_platform_interface: ^8.0.0
2020
path: ^1.8.0
2121
xdg_directories: ">=0.2.0+1 <2.0.0"
2222

flutter_local_notifications_platform_interface/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## [8.0.0-dev.1]
1+
## [8.0.0]
22

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

flutter_local_notifications_platform_interface/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_local_notifications_platform_interface
22
description: A common platform interface for the flutter_local_notifications plugin.
3-
version: 8.0.0-dev.1
3+
version: 8.0.0
44
homepage: https://github.com/MaikuB/flutter_local_notifications/tree/master/flutter_local_notifications_platform_interface
55

66
environment:

0 commit comments

Comments
 (0)