Skip to content

Commit

Permalink
Release 5.4.0 (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
jyaganeh authored Apr 4, 2022
1 parent 9c1627f commit 10659a4
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 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 5.4.0 - April 4, 2022
Minor release that adds support for registering a handler that will be
called when a message is received in the background on Android.

### Changes
- Added support for handling background messages on Android
- Updated iOS SDK to 16.5.1

## Version 5.3.0 - March 4, 2022
Minor release that adds support for multi-channel Preference Center.

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 = "5.3.0"
const val AIRSHIP_PLUGIN_VERSION = "5.4.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 = "5.3.0"
static let pluginVersion = "5.4.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="5.3.0"
AIRSHIP_FLUTTER_VERSION="5.4.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.4.0'
s.dependency 'Airship/MessageCenter', '~> 16.4.0'
s.dependency 'Airship/Automation', '~> 16.4.0'
s.dependency 'Airship/PreferenceCenter', '~> 16.4.0'
s.dependency 'Airship/Core', '~> 16.5.1'
s.dependency 'Airship/MessageCenter', '~> 16.5.1'
s.dependency 'Airship/Automation', '~> 16.5.1'
s.dependency 'Airship/PreferenceCenter', '~> 16.5.1'
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: "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: 5.3.0
version: 5.4.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 10659a4

Please sign in to comment.