Skip to content

Commit

Permalink
Merge pull request #218 from urbanairship/release-7.8.2
Browse files Browse the repository at this point in the history
prepare patch release 7.8.2
  • Loading branch information
Ulrico972 committed Sep 13, 2024
2 parents c971812 + 25c5005 commit 2732ffd
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 8 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Flutter Plugin Changelog

## Version 7.8.2 - September 13, 2024

Patch release that fixes a potential Swift compile error.

### Changes

- Fixed a potential Swift compile error.

## Version 7.8.1 - September 10, 2024

Patch release that brings back in-app messages methods and fixes a potential Swift compile error.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ package com.airship.flutter

class AirshipPluginVersion {
companion object {
const val AIRSHIP_PLUGIN_VERSION = "7.8.1"
const val AIRSHIP_PLUGIN_VERSION = "7.8.2"
}
}
2 changes: 1 addition & 1 deletion ios/Classes/AirshipPluginVersion.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Foundation

class AirshipPluginVersion {
static let pluginVersion = "7.8.1"
static let pluginVersion = "7.8.2"
}
5 changes: 1 addition & 4 deletions ios/Classes/SwiftAirshipPlugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -452,10 +452,7 @@ public class SwiftAirshipPlugin: NSObject, FlutterPlugin {
return try AirshipJSON.wrap(flag).unWrap()

case "featureFlagManager#trackInteraction":
guard let arg = try? call.requireAnyArg() as? String else {
throw AirshipErrors.error("Call requires a String argument")
}

let arg = try call.requireStringArg()
guard let jsonData = arg.data(using: .utf8),
let featureFlagProxy = try? JSONDecoder().decode(FeatureFlagProxy.self, from: jsonData) else {
throw AirshipErrors.error("Call requires a json string that's decodable to FeatureFlagProxy")
Expand Down
2 changes: 1 addition & 1 deletion ios/airship_flutter.podspec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

AIRSHIP_FLUTTER_VERSION="7.8.1"
AIRSHIP_FLUTTER_VERSION="7.8.2"

#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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.8.1
version: 7.8.2
homepage: https://www.airship.com/
repository: https://github.com/urbanairship/airship-flutter
issue_tracker: https://github.com/urbanairship/airship-flutter/issues
Expand Down

0 comments on commit 2732ffd

Please sign in to comment.