Skip to content

Commit

Permalink
Merge pull request #51 from urbanairship/MOBILE-1558
Browse files Browse the repository at this point in the history
Release 3.0.2
  • Loading branch information
crow authored May 5, 2020
2 parents 08ec2cc + fb464fb commit 2a51217
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 6 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Flutter Plugin Changelog

## Version 3.0.2 - May 5, 2020
Patch release updating to the latest Airship SDKs and addressing issues with YouTube video support and channel registration on iOS.

### Changes
- Updated iOS SDK to 13.3.0
- Updated Android SDK to 13.1.0
- Fixed YouTube video support in Message Center and HTML In-app messages.
- Fixed channel registration to occur every APNs registration change.

## Version 3.0.1 - March 23, 2020
Patch addressing a regression in iOS SDK 13.1.0 causing channel tag loss
when upgrading from iOS SDK versions prior to 13.0.1. Apps upgrading from airship_flutter plugin
Expand Down
2 changes: 1 addition & 1 deletion DEV_README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ To generate the API documentations for flutter, use the docs script by running t

To upload the API documentations to google cloud, use the docs script by running the following command at the project root directory:

Replace NEW_VERSION with your semantic version (i.e. 3.0.1):
Replace NEW_VERSION with your semantic version (i.e. 3.0.2):

Replace PATH_TO_DOCS with your path to the generated docs version (i.e. doc):

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

```
dependencies:
airship_flutter: ^3.0.1
airship_flutter: ^3.0.2
```

2. Install your flutter package dependencies by running the following in the command line at your project's root directory:
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 = "3.0.1"
const val AIRSHIP_PLUGIN_VERSION = "3.0.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 = "3.0.1"
static let pluginVersion = "3.0.2"
}
2 changes: 1 addition & 1 deletion ios/airship_flutter.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AIRSHIP_FLUTTER_VERSION="3.0.1"
AIRSHIP_FLUTTER_VERSION="3.0.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: "The Airship flutter plugin. This package implements a cross-platform plugin interface to Airship's iOS and Android native SDKs. This allows core Airship functionality to be implemented by Flutter apps written in dart. The available core Airship functionality currently includes: push, in-app message, message center, actions, custom events and more."
version: 3.0.1
version: 3.0.2
homepage: https://www.airship.com/

environment:
Expand Down

0 comments on commit 2a51217

Please sign in to comment.