Skip to content

Commit

Permalink
Release 7.4.0 (#202)
Browse files Browse the repository at this point in the history
Co-authored-by: khmMouna <[email protected]>
Co-authored-by: Ognjen Ristanovic <[email protected]>
  • Loading branch information
3 people authored May 16, 2024
1 parent 3f7039f commit 154fa87
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# https://help.github.com/en/articles/about-code-owners
* @jyaganeh @Apekka @crow @rlepinski @khmMouna @Ulrico972 @oristanovic
* @urbanairship/mobile
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Flutter Plugin Changelog

## Version 7.4.0 - May 16, 2024
Minor release that updates the Android SDK to 17.8.1 and iOS SDK to 18.2.2

### Changes
- Updated Android SDK to 17.8.1.
- Updated iOS SDK to 18.2.2.

## Version 7.3.2 - May 3, 2024
Patch release that updates the iOS SDK to 18.1.2

Expand Down
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ buildscript {
ext.kotlin_version = '1.7.10'
ext.coroutine_version = '1.5.2'
ext.datastore_preferences_version = '1.0.0'
ext.airship_version = '17.7.3'
ext.airship_framework_proxy_version = '5.1.2'
ext.airship_version = '17.8.1'
ext.airship_framework_proxy_version = '6.2.2'

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 = "7.3.2"
const val AIRSHIP_PLUGIN_VERSION = "7.4.0"
}
}
5 changes: 2 additions & 3 deletions example/lib/screens/tag_add.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,8 @@ class _TagAddState extends State<TagAdd> {
onDismissed: (direction) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(content: Text("tag \"$tag\" removed")));
tags.remove(tag);
Airship.channel.removeTags([tag]);
updateState();
Airship.channel.removeTags([tag]);
updateState();
},
child: Card(
elevation: 5.0,
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 = "7.3.2"
static let pluginVersion = "7.4.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.3.2"
AIRSHIP_FLUTTER_VERSION="7.4.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", "6.1.2"
s.dependency "AirshipFrameworkProxy", "6.2.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.3.2
version: 7.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 154fa87

Please sign in to comment.