Skip to content

Commit

Permalink
Release 6.3.0 (#165)
Browse files Browse the repository at this point in the history
* prepare release

* compile version

---------

Co-authored-by: Ognjen Ristanovic <[email protected]>
  • Loading branch information
oristanovic and Ognjen Ristanovic authored Mar 30, 2023
1 parent f4e0f80 commit 02c3164
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 12 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Flutter Plugin Changelog

## Version 6.3.0 - March 28, 2023
Minor release that updates the Airship iOS SDK to 16.11.3 and Android SDK to 16.9.1.

## Version 6.2.3 - March 7, 2023
Patch release that fixes a bug with contact subscription list on iOS.

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.2.3
airship_flutter: ^6.3.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.8.0'
ext.airship_version = '16.9.1'

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.2.3"
const val AIRSHIP_PLUGIN_VERSION = "6.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 @@ -26,7 +26,7 @@ apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

android {
compileSdkVersion 31
compileSdkVersion 33

sourceSets {
main.java.srcDirs += 'src/main/kotlin'
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 = "6.2.3"
static let pluginVersion = "6.3.0"
}
12 changes: 6 additions & 6 deletions ios/airship_flutter.podspec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

AIRSHIP_FLUTTER_VERSION="6.2.3"
AIRSHIP_FLUTTER_VERSION="6.3.0"

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

s.ios.deployment_target = "11.0"
s.dependency 'Airship/Core', '~> 16.10.7'
s.dependency 'Airship/MessageCenter', '~> 16.10.7'
s.dependency 'Airship/Automation', '~> 16.10.7'
s.dependency 'Airship/PreferenceCenter', '~> 16.10.7'
s.dependency 'Airship/ExtendedActions', '~> 16.10.7'
s.dependency 'Airship/Core', '~> 16.11.3'
s.dependency 'Airship/MessageCenter', '~> 16.11.3'
s.dependency 'Airship/Automation', '~> 16.11.3'
s.dependency 'Airship/PreferenceCenter', '~> 16.11.3'
s.dependency 'Airship/ExtendedActions', '~> 16.11.3'

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.2.3
version: 6.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 02c3164

Please sign in to comment.