Skip to content

Commit

Permalink
Merge pull request #85 from urbanairship/MOBILE-2330
Browse files Browse the repository at this point in the history
[MOBILE-2330] Release 4.3.0
  • Loading branch information
Ulrico972 authored May 25, 2021
2 parents 0214d05 + 8fbfa54 commit adb9209
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 8 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 4.3.0 - May 26, 2021
Minor release updating the iOS and Android SDKs to 14.4.1 and 14.4.3. Also adds support for null-safety.

### Changes
- Updated iOS SDK to 14.4.1
- Updated Android SDK to 14.4.3
- Support null-safety
- Updated Android minSdkLevel to API 21

## Version 4.2.0 - April 06, 2021
Minor release updating the iOS and Android SDKs to 14.3.1 and 14.3.0.

Expand Down
4 changes: 2 additions & 2 deletions 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.4.21'
ext.coroutine_version = '1.3.0'
ext.airship_version = '14.3.0'
ext.airship_version = '14.4.3'

repositories {
google()
Expand Down Expand Up @@ -35,7 +35,7 @@ android {
main.java.srcDirs += 'src/main/kotlin'
}
defaultConfig {
minSdkVersion 16
minSdkVersion 21
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
lintOptions {
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 = "4.2.0"
const val AIRSHIP_PLUGIN_VERSION = "4.3.0"
}
}
2 changes: 1 addition & 1 deletion example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ android {
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.urbanairship.sample"
minSdkVersion 16
minSdkVersion 21
targetSdkVersion 28
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
Expand Down
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 = "4.2.0"
static let pluginVersion = "4.3.0"
}
4 changes: 2 additions & 2 deletions ios/airship_flutter.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AIRSHIP_FLUTTER_VERSION="4.2.0"
AIRSHIP_FLUTTER_VERSION="4.3.0"

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

s.ios.deployment_target = "11.0"
s.dependency 'Airship', '~> 14.3.1'
s.dependency 'Airship', '~> 14.4.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: 4.2.0
version: 4.3.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 adb9209

Please sign in to comment.