From f5fc1a7a963fde95981c58adbb7ad4d0f13458bc Mon Sep 17 00:00:00 2001 From: Michael Bui <25263378+MaikuB@users.noreply.github.com> Date: Wed, 16 Nov 2022 21:27:31 +1100 Subject: [PATCH 1/2] update kotlin version so example app will compile --- flutter_local_notifications/example/android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flutter_local_notifications/example/android/build.gradle b/flutter_local_notifications/example/android/build.gradle index 342d7c3c3..7130c8967 100644 --- a/flutter_local_notifications/example/android/build.gradle +++ b/flutter_local_notifications/example/android/build.gradle @@ -1,5 +1,5 @@ buildscript { - ext.kotlin_version = '1.5.31' + ext.kotlin_version = '1.7.20' repositories { google() mavenCentral() From 6cf32301ddebcb2ae5a5aa11e0d75dee893b7559 Mon Sep 17 00:00:00 2001 From: Michael Bui <25263378+MaikuB@users.noreply.github.com> Date: Wed, 16 Nov 2022 21:32:50 +1100 Subject: [PATCH 2/2] updates for 12.0.3+1 release --- flutter_local_notifications/CHANGELOG.md | 5 +++++ flutter_local_notifications/pubspec.yaml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/flutter_local_notifications/CHANGELOG.md b/flutter_local_notifications/CHANGELOG.md index 24197a869..a79a08619 100644 --- a/flutter_local_notifications/CHANGELOG.md +++ b/flutter_local_notifications/CHANGELOG.md @@ -1,3 +1,8 @@ +# [12.0.3+1] + +* Updated Kotlin version used in example app +* Updated code snippets in readme to add missing import statements around the iOS setup related to notification actions. Thanks to PR from [som-R91](https://github.com/som-R91) + # [12.0.3] * [Android] removed reference to Android V1 embedding. Thanks to PR from [Simon Ser](https://github.com/emersion) diff --git a/flutter_local_notifications/pubspec.yaml b/flutter_local_notifications/pubspec.yaml index 8b646fa5f..df1e30867 100644 --- a/flutter_local_notifications/pubspec.yaml +++ b/flutter_local_notifications/pubspec.yaml @@ -2,7 +2,7 @@ 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: 12.0.3 +version: 12.0.3+1 homepage: https://github.com/MaikuB/flutter_local_notifications/tree/master/flutter_local_notifications issue_tracker: https://github.com/MaikuB/flutter_local_notifications/issues