Skip to content

Commit

Permalink
Merge pull request #137 from urbanairship/MOBILE-3160
Browse files Browse the repository at this point in the history
[MOBILE-3160] Update to latest SDKs
  • Loading branch information
Ulrico972 authored Aug 3, 2022
2 parents 0077c07 + 087d271 commit a9ebc5e
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 10 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Flutter Plugin Changelog

## Version 6.1.0 - August 3, 2022
Minor release that updates Airship Android SDK to 16.7.0, and iOS SDK to 16.9.0. This also fixes a crash on No Action buttons on iOS.

- Updated Airship Android SDK to 16.7.0.
- Updated Airship iOS SDK to 16.9.0.
- Fix crash on iOS message center buttons with the action: "No Action".

## Version 6.0.1 - July 21, 2022
Patch release that fixes background message handler for silent pushes.

Expand All @@ -13,6 +20,14 @@ Major release that supports flutter 3.
- Fixed pubspec to follow Dart file conventions.
- Updated Flutter example to flutter 3.

## Version 5.6.0 - August 3, 2022
Minor release that updates Airship Android SDK to 16.7.0, and iOS SDK to 16.9.0. This also fixes background message handler for silent pushes and a crash on iOS message center buttons with the action: "No Action".

### Changes
- Updated Airship Android SDK to 16.7.0.
- Updated Airship iOS SDK to 16.9.0.
- Fix background message handler for silent pushes on Android.
- Fix crash on iOS message center buttons with the action: "No Action".

## Version 5.5.0 - May 4, 2022
Minor release that updates Airship Android SDK to 16.4.0, and iOS SDK to 16.6.0. These SDK releases fix several issues with Scenes and Surveys. Apps using Scenes & Surveys should update.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The Airship Flutter plugin allows using Airship's native iOS and Android APIs wi

```yaml
dependencies:
airship_flutter: ^6.0.1
airship_flutter: ^6.1.0
```
2. Install your flutter package dependencies by running the following in the command line at your project's root directory:
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version '1.0-SNAPSHOT'
buildscript {
ext.kotlin_version = '1.5.31'
ext.coroutine_version = '1.5.2'
ext.airship_version = '16.5.1'
ext.airship_version = '16.7.0'

repositories {
google()
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 = "6.0.1"
const val AIRSHIP_PLUGIN_VERSION = "6.1.0"
}
}
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 = "6.0.1"
static let pluginVersion = "6.1.0"
}
10 changes: 5 additions & 5 deletions ios/airship_flutter.podspec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

AIRSHIP_FLUTTER_VERSION="6.0.1"
AIRSHIP_FLUTTER_VERSION="6.1.0"

#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
Expand All @@ -21,9 +21,9 @@ Airship flutter plugin.
s.dependency 'Flutter'

s.ios.deployment_target = "11.0"
s.dependency 'Airship/Core', '~> 16.7.0'
s.dependency 'Airship/MessageCenter', '~> 16.7.0'
s.dependency 'Airship/Automation', '~> 16.7.0'
s.dependency 'Airship/PreferenceCenter', '~> 16.7.0'
s.dependency 'Airship/Core', '~> 16.9.0'
s.dependency 'Airship/MessageCenter', '~> 16.9.0'
s.dependency 'Airship/Automation', '~> 16.9.0'
s.dependency 'Airship/PreferenceCenter', '~> 16.9.0'
end

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: 6.0.1
version: 6.1.0
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 a9ebc5e

Please sign in to comment.