diff --git a/CHANGELOG.md b/CHANGELOG.md index 83b95070..9d43a7c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Flutter Plugin Changelog +## Version 6.1.0 - August 3, 2022 +Minor release that updates Airship Android SDK to 16.7.0, and iOS SDK to 16.9.0. This also fixes a crash on No Action buttons on iOS. + +- Updated Airship Android SDK to 16.7.0. +- Updated Airship iOS SDK to 16.9.0. +- Fix crash on iOS message center buttons with the action: "No Action". + ## Version 6.0.1 - July 21, 2022 Patch release that fixes background message handler for silent pushes. @@ -13,6 +20,14 @@ Major release that supports flutter 3. - Fixed pubspec to follow Dart file conventions. - Updated Flutter example to flutter 3. +## Version 5.6.0 - August 3, 2022 +Minor release that updates Airship Android SDK to 16.7.0, and iOS SDK to 16.9.0. This also fixes background message handler for silent pushes and a crash on iOS message center buttons with the action: "No Action". + +### Changes +- Updated Airship Android SDK to 16.7.0. +- Updated Airship iOS SDK to 16.9.0. +- Fix background message handler for silent pushes on Android. +- Fix crash on iOS message center buttons with the action: "No Action". ## Version 5.5.0 - May 4, 2022 Minor release that updates Airship Android SDK to 16.4.0, and iOS SDK to 16.6.0. These SDK releases fix several issues with Scenes and Surveys. Apps using Scenes & Surveys should update. diff --git a/README.md b/README.md index 5f8cf50e..25c1dd9a 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ The Airship Flutter plugin allows using Airship's native iOS and Android APIs wi ```yaml dependencies: - airship_flutter: ^6.0.1 + airship_flutter: ^6.1.0 ``` 2. Install your flutter package dependencies by running the following in the command line at your project's root directory: diff --git a/android/build.gradle b/android/build.gradle index 71ee5434..901b2066 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -4,7 +4,7 @@ version '1.0-SNAPSHOT' buildscript { ext.kotlin_version = '1.5.31' ext.coroutine_version = '1.5.2' - ext.airship_version = '16.5.1' + ext.airship_version = '16.7.0' repositories { google() diff --git a/android/src/main/kotlin/com/airship/flutter/AirshipPluginVersion.kt b/android/src/main/kotlin/com/airship/flutter/AirshipPluginVersion.kt index 6707e437..2257b771 100644 --- a/android/src/main/kotlin/com/airship/flutter/AirshipPluginVersion.kt +++ b/android/src/main/kotlin/com/airship/flutter/AirshipPluginVersion.kt @@ -2,6 +2,6 @@ package com.airship.flutter class AirshipPluginVersion { companion object { - const val AIRSHIP_PLUGIN_VERSION = "6.0.1" + const val AIRSHIP_PLUGIN_VERSION = "6.1.0" } } diff --git a/ios/Classes/AirshipPluginVersion.swift b/ios/Classes/AirshipPluginVersion.swift index 9ced2421..09dc501e 100644 --- a/ios/Classes/AirshipPluginVersion.swift +++ b/ios/Classes/AirshipPluginVersion.swift @@ -1,5 +1,5 @@ import Foundation class AirshipPluginVersion { - static let pluginVersion = "6.0.1" + static let pluginVersion = "6.1.0" } diff --git a/ios/airship_flutter.podspec b/ios/airship_flutter.podspec index 15262d41..5c82445d 100644 --- a/ios/airship_flutter.podspec +++ b/ios/airship_flutter.podspec @@ -1,5 +1,5 @@ -AIRSHIP_FLUTTER_VERSION="6.0.1" +AIRSHIP_FLUTTER_VERSION="6.1.0" # # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html @@ -21,9 +21,9 @@ Airship flutter plugin. s.dependency 'Flutter' s.ios.deployment_target = "11.0" - s.dependency 'Airship/Core', '~> 16.7.0' - s.dependency 'Airship/MessageCenter', '~> 16.7.0' - s.dependency 'Airship/Automation', '~> 16.7.0' - s.dependency 'Airship/PreferenceCenter', '~> 16.7.0' + s.dependency 'Airship/Core', '~> 16.9.0' + s.dependency 'Airship/MessageCenter', '~> 16.9.0' + s.dependency 'Airship/Automation', '~> 16.9.0' + s.dependency 'Airship/PreferenceCenter', '~> 16.9.0' end diff --git a/pubspec.yaml b/pubspec.yaml index a0711ebd..0ef2a627 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: airship_flutter description: "Cross-platform plugin interface for the native Airship iOS and Android SDKs. Simplifies adding Airship to Flutter apps." -version: 6.0.1 +version: 6.1.0 homepage: https://www.airship.com/ repository: https://github.com/urbanairship/airship-flutter issue_tracker: https://github.com/urbanairship/airship-flutter/issues