Skip to content

Commit

Permalink
Merge pull request #211 from urbanairship/release-7.7.0
Browse files Browse the repository at this point in the history
Prepare version 7.7.0
  • Loading branch information
Ulrico972 authored Aug 13, 2024
2 parents b47e201 + 8ab1dab commit bb57e83
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 8 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Flutter Plugin Changelog

## Version 7.7.0 - August 13, 2024
Minor release that fixes test devices audience check, holdout group experiments displays and in-app experience displays when resuming from a paused state. Apps that use in-app experiences are encouraged to update.

### Changes
- Updated Android SDK to 18.1.6.
- Updated iOS SDK to 18.7.2.
- Fixed test devices audience check.
- Fixed holdout group experiments displays.
- Fixed in-app experience displays when resuming from a paused state.

## Version 7.6.0 - July 11, 2024
Minor release that updates the Android SDK to 18.1.1 and the iOS SDK to 18.5.0.

Expand Down
4 changes: 1 addition & 3 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ buildscript {
ext.kotlin_version = '1.9.0'
ext.coroutine_version = '1.5.2'
ext.datastore_preferences_version = '1.1.1'
ext.airship_version = '18.1.1'
ext.airship_framework_proxy_version = '7.0.0'
ext.airship_framework_proxy_version = '7.1.2'

repositories {
google()
Expand Down Expand Up @@ -63,7 +62,6 @@ tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {
dependencies {
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutine_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutine_version"
implementation "com.urbanairship.android:urbanairship-fcm:$airship_version"
api "com.urbanairship.android:airship-framework-proxy:$airship_framework_proxy_version"
implementation "androidx.datastore:datastore-preferences:$datastore_preferences_version"
}
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 = "7.6.0"
const val AIRSHIP_PLUGIN_VERSION = "7.7.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 = "7.6.0"
static let pluginVersion = "7.7.0"
}
4 changes: 2 additions & 2 deletions ios/airship_flutter.podspec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

AIRSHIP_FLUTTER_VERSION="7.6.0"
AIRSHIP_FLUTTER_VERSION="7.7.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.public_header_files = 'Classes/**/*.h'
s.dependency 'Flutter'
s.ios.deployment_target = "14.0"
s.dependency "AirshipFrameworkProxy", "7.0.0"
s.dependency "AirshipFrameworkProxy", "7.1.2"
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: 7.6.0
version: 7.7.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 bb57e83

Please sign in to comment.