From 036abe2b9630974bb23a07bb6f8685b085f01c05 Mon Sep 17 00:00:00 2001 From: crow Date: Fri, 16 Aug 2024 14:37:31 -0700 Subject: [PATCH 1/2] Update version --- .../src/main/kotlin/com/airship/flutter/AirshipPluginVersion.kt | 2 +- ios/Classes/AirshipPluginVersion.swift | 2 +- ios/airship_flutter.podspec | 2 +- pubspec.yaml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/android/src/main/kotlin/com/airship/flutter/AirshipPluginVersion.kt b/android/src/main/kotlin/com/airship/flutter/AirshipPluginVersion.kt index cbe127da..ea19984d 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 = "7.7.0" + const val AIRSHIP_PLUGIN_VERSION = "7.7.1" } } diff --git a/ios/Classes/AirshipPluginVersion.swift b/ios/Classes/AirshipPluginVersion.swift index ab2aabc8..0948bdc7 100644 --- a/ios/Classes/AirshipPluginVersion.swift +++ b/ios/Classes/AirshipPluginVersion.swift @@ -1,5 +1,5 @@ import Foundation class AirshipPluginVersion { - static let pluginVersion = "7.7.0" + static let pluginVersion = "7.7.1" } diff --git a/ios/airship_flutter.podspec b/ios/airship_flutter.podspec index c6ba7407..2f639401 100644 --- a/ios/airship_flutter.podspec +++ b/ios/airship_flutter.podspec @@ -1,5 +1,5 @@ -AIRSHIP_FLUTTER_VERSION="7.7.0" +AIRSHIP_FLUTTER_VERSION="7.7.1" # # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html diff --git a/pubspec.yaml b/pubspec.yaml index c295a674..751d21d2 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: 7.7.0 +version: 7.7.1 homepage: https://www.airship.com/ repository: https://github.com/urbanairship/airship-flutter issue_tracker: https://github.com/urbanairship/airship-flutter/issues From 966c9ce22aee25706c21518822c5742f19e5b29b Mon Sep 17 00:00:00 2001 From: crow Date: Fri, 16 Aug 2024 15:19:10 -0700 Subject: [PATCH 2/2] Update CHANGELOG --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 86b39743..6c214678 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Flutter Plugin Changelog +## Version 7.7.1 - August 16, 2024 +Patch release that adds a message center message list refresh operation on iOS. This allows message center messages to properly display when launched from a push while the iOS app is backgrounded. iOS apps that open message center messages directly from push notifications are encouraged to update. + +### Changes +- Refresh message center messages when message is initially unavailable on iOS. + ## Version 7.7.0 - August 13, 2024 Minor release that fixes test devices audience check, holdout group experiments displays and in-app experience displays when resuming from a paused state. Apps that use in-app experiences are encouraged to update.