Skip to content

Commit 07e6ee3

Browse files
crowcrow
authored andcommitted
Release 10.3.1
1 parent d845e17 commit 07e6ee3

File tree

8 files changed

+16
-36
lines changed

8 files changed

+16
-36
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Flutter Plugin Changelog
22

3+
## Version 10.3.1 - May 9, 2025
4+
5+
Patch release that updates the iOS SDK to 19.3.2
6+
7+
### Changes
8+
- Updated iOS SDK to [19.3.2](https://github.com/urbanairship/ios-library/releases/tag/19.3.2)
9+
310
## Version 10.3.0 - May 1, 2025
411
Minor release that updates the Android SDK to 19.6.2 and the iOS SDK to 19.3.1 and fixes an Embedded View bug.
512

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
ext.kotlin_version = '1.9.0'
66
ext.coroutine_version = '1.5.2'
77
ext.datastore_preferences_version = '1.1.1'
8-
ext.airship_framework_proxy_version = '14.2.1'
8+
ext.airship_framework_proxy_version = '14.2.3'
99

1010

1111
repositories {

android/src/main/kotlin/com/airship/flutter/AirshipPluginVersion.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ package com.airship.flutter
22

33
class AirshipPluginVersion {
44
companion object {
5-
const val AIRSHIP_PLUGIN_VERSION = "10.3.0"
5+
const val AIRSHIP_PLUGIN_VERSION = "10.3.1"
66
}
77
}

example/ios/Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage/Package.swift

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,17 @@ import PackageDescription
99
let package = Package(
1010
name: "FlutterGeneratedPluginSwiftPackage",
1111
platforms: [
12-
.iOS("16.1")
12+
.iOS("12.0")
1313
],
1414
products: [
1515
.library(name: "FlutterGeneratedPluginSwiftPackage", type: .static, targets: ["FlutterGeneratedPluginSwiftPackage"])
1616
],
1717
dependencies: [
18-
.package(name: "airship_flutter", path: "/Users/david.crow/source/airship-flutter/ios/airship_flutter")
18+
1919
],
2020
targets: [
2121
.target(
22-
name: "FlutterGeneratedPluginSwiftPackage",
23-
dependencies: [
24-
.product(name: "airship-flutter", package: "airship_flutter")
25-
]
22+
name: "FlutterGeneratedPluginSwiftPackage"
2623
)
2724
]
2825
)

example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 0 additions & 24 deletions
This file was deleted.

ios/airship_flutter.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
AIRSHIP_FLUTTER_VERSION="10.3.0"
2+
AIRSHIP_FLUTTER_VERSION="10.3.1"
33

44
#
55
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
@@ -19,7 +19,7 @@ Airship flutter plugin.
1919
s.source_files = 'airship_flutter/Sources/airship_flutter/**/*'
2020
s.dependency 'Flutter'
2121
s.ios.deployment_target = "15.0"
22-
s.dependency "AirshipFrameworkProxy", "14.2.1"
22+
s.dependency "AirshipFrameworkProxy", "14.2.3"
2323
s.swift_version = "5.0.0"
2424
s.resource_bundles = {'airship_flutter_privacy' => ['airship_flutter/Sources/airship_flutter/PrivacyInfo.xcprivacy']}
2525
end
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import Foundation
22

33
class AirshipPluginVersion {
4-
static let pluginVersion = "10.3.0"
4+
static let pluginVersion = "10.3.1"
55
}

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: airship_flutter
22
description: "Cross-platform plugin interface for the native Airship iOS and Android SDKs. Simplifies adding Airship to Flutter apps."
3-
version: 10.3.0
3+
version: 10.3.1
44
homepage: https://www.airship.com/
55
repository: https://github.com/urbanairship/airship-flutter
66
issue_tracker: https://github.com/urbanairship/airship-flutter/issues

0 commit comments

Comments
 (0)