Skip to content

Commit

Permalink
prepare patch release 7.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulrico972 committed Sep 13, 2024
1 parent c971812 commit 91373b7
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 5 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"
}
3 changes: 2 additions & 1 deletion ios/Classes/SwiftAirshipPlugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,8 @@ public class SwiftAirshipPlugin: NSObject, FlutterPlugin {
return try AirshipJSON.wrap(flag).unWrap()

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

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 91373b7

Please sign in to comment.