Skip to content

Commit 84ccbe5

Browse files
authored
Merge pull request #288 from urbanairship/release-11.3.0
Release 11.3.0
2 parents 40e335d + 1556b67 commit 84ccbe5

File tree

8 files changed

+18
-13
lines changed

8 files changed

+18
-13
lines changed

CHANGELOG.md

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

3+
## Version 11.3.0 - April 1, 2026
4+
5+
Minor release that updates the Android SDK to 20.6.1 and the iOS SDK to 20.6.0
6+
7+
### Changes
8+
- Updated Android SDK to [20.6.1](https://github.com/urbanairship/android-library/releases/tag/20.6.1)
9+
- Updated iOS SDK to [20.6.0](https://github.com/urbanairship/ios-library/releases/tag/20.6.0)
10+
311
## Version 11.2.0 - March 17, 2026
412

513
Minor release that updates the Android SDK to 20.5.0 and the iOS SDK to 20.5.0.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The official Airship Flutter plugin for iOS and Android.
2626
Add the dependency to your `pubspec.yaml`:
2727
```yaml
2828
dependencies:
29-
airship_flutter: ^11.0.0
29+
airship_flutter: ^11.3.0
3030
```
3131
3232
Then run:

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 = '2.0.21'
66
ext.coroutine_version = '1.5.2'
77
ext.datastore_preferences_version = '1.1.1'
8-
ext.airship_framework_proxy_version = '15.6.0'
8+
ext.airship_framework_proxy_version = '15.7.0'
99

1010

1111

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 = "11.2.0"
5+
const val AIRSHIP_PLUGIN_VERSION = "11.3.0"
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("13.0")
1313
],
1414
products: [
1515
.library(name: "FlutterGeneratedPluginSwiftPackage", type: .static, targets: ["FlutterGeneratedPluginSwiftPackage"])
1616
],
1717
dependencies: [
18-
.package(name: "airship_flutter", path: "../.packages/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
)

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="11.2.0"
2+
AIRSHIP_FLUTTER_VERSION="11.3.0"
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 = "16.0"
22-
s.dependency "AirshipFrameworkProxy", "15.6.0"
22+
s.dependency "AirshipFrameworkProxy", "15.7.0"
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 = "11.2.0"
4+
static let pluginVersion = "11.3.0"
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: 11.2.0
3+
version: 11.3.0
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)