From 154fa871be4c764a6f74fdafb85e54e3ed354529 Mon Sep 17 00:00:00 2001 From: Josh Yaganeh <319444+jyaganeh@users.noreply.github.com> Date: Thu, 16 May 2024 16:11:57 -0700 Subject: [PATCH] Release 7.4.0 (#202) Co-authored-by: khmMouna Co-authored-by: Ognjen Ristanovic --- .github/CODEOWNERS | 2 +- CHANGELOG.md | 7 +++++++ android/build.gradle | 4 ++-- .../kotlin/com/airship/flutter/AirshipPluginVersion.kt | 2 +- example/lib/screens/tag_add.dart | 5 ++--- ios/Classes/AirshipPluginVersion.swift | 2 +- ios/airship_flutter.podspec | 4 ++-- pubspec.yaml | 2 +- 8 files changed, 17 insertions(+), 11 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 93d386eb..5be1272e 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,2 +1,2 @@ # https://help.github.com/en/articles/about-code-owners -* @jyaganeh @Apekka @crow @rlepinski @khmMouna @Ulrico972 @oristanovic +* @urbanairship/mobile \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 4dd903c1..47b7dbd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Flutter Plugin Changelog +## Version 7.4.0 - May 16, 2024 +Minor release that updates the Android SDK to 17.8.1 and iOS SDK to 18.2.2 + +### Changes +- Updated Android SDK to 17.8.1. +- Updated iOS SDK to 18.2.2. + ## Version 7.3.2 - May 3, 2024 Patch release that updates the iOS SDK to 18.1.2 diff --git a/android/build.gradle b/android/build.gradle index 97914ee6..9c23ab10 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -5,8 +5,8 @@ buildscript { ext.kotlin_version = '1.7.10' ext.coroutine_version = '1.5.2' ext.datastore_preferences_version = '1.0.0' - ext.airship_version = '17.7.3' - ext.airship_framework_proxy_version = '5.1.2' + ext.airship_version = '17.8.1' + ext.airship_framework_proxy_version = '6.2.2' 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 a4e3acfb..b247eb20 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.3.2" + const val AIRSHIP_PLUGIN_VERSION = "7.4.0" } } diff --git a/example/lib/screens/tag_add.dart b/example/lib/screens/tag_add.dart index c2e58e4d..fc63b8be 100644 --- a/example/lib/screens/tag_add.dart +++ b/example/lib/screens/tag_add.dart @@ -37,9 +37,8 @@ class _TagAddState extends State { onDismissed: (direction) { ScaffoldMessenger.of(context).showSnackBar( SnackBar(content: Text("tag \"$tag\" removed"))); - tags.remove(tag); - Airship.channel.removeTags([tag]); - updateState(); + Airship.channel.removeTags([tag]); + updateState(); }, child: Card( elevation: 5.0, diff --git a/ios/Classes/AirshipPluginVersion.swift b/ios/Classes/AirshipPluginVersion.swift index 324dbfc8..27e0a0fb 100644 --- a/ios/Classes/AirshipPluginVersion.swift +++ b/ios/Classes/AirshipPluginVersion.swift @@ -1,5 +1,5 @@ import Foundation class AirshipPluginVersion { - static let pluginVersion = "7.3.2" + static let pluginVersion = "7.4.0" } diff --git a/ios/airship_flutter.podspec b/ios/airship_flutter.podspec index 18d3cdb9..b0a9f09a 100644 --- a/ios/airship_flutter.podspec +++ b/ios/airship_flutter.podspec @@ -1,5 +1,5 @@ -AIRSHIP_FLUTTER_VERSION="7.3.2" +AIRSHIP_FLUTTER_VERSION="7.4.0" # # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html @@ -20,6 +20,6 @@ Airship flutter plugin. s.public_header_files = 'Classes/**/*.h' s.dependency 'Flutter' s.ios.deployment_target = "14.0" - s.dependency "AirshipFrameworkProxy", "6.1.2" + s.dependency "AirshipFrameworkProxy", "6.2.2" end diff --git a/pubspec.yaml b/pubspec.yaml index c3bd41c6..89b8062e 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.3.2 +version: 7.4.0 homepage: https://www.airship.com/ repository: https://github.com/urbanairship/airship-flutter issue_tracker: https://github.com/urbanairship/airship-flutter/issues