Skip to content

Commit

Permalink
Release 18.9.0 (#3202)
Browse files Browse the repository at this point in the history
  • Loading branch information
rlepinski authored Sep 10, 2024
1 parent 8a2d229 commit ddae34a
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Airship.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AIRSHIP_VERSION="18.8.0"
AIRSHIP_VERSION="18.9.0"

Pod::Spec.new do |s|
s.version = AIRSHIP_VERSION
Expand Down
2 changes: 1 addition & 1 deletion Airship/AirshipConfig.xcconfig
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//* Copyright Airship and Contributors */

CURRENT_PROJECT_VERSION = 18.8.0
CURRENT_PROJECT_VERSION = 18.9.0

// Uncomment to include the preview build warning
// OTHER_CFLAGS = $(inherited) -DUA_PREVIEW=1
2 changes: 1 addition & 1 deletion Airship/AirshipCore/Source/AirshipVersion.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import Foundation

public struct AirshipVersion {
public static let version = "18.8.0"
public static let version = "18.9.0"
public static func get() -> String {
return version
}
Expand Down
2 changes: 1 addition & 1 deletion AirshipContentExtension.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AIRSHIP_VERSION="18.8.0"
AIRSHIP_VERSION="18.9.0"

Pod::Spec.new do |s|
s.version = AIRSHIP_VERSION
Expand Down
2 changes: 1 addition & 1 deletion AirshipDebug.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AIRSHIP_VERSION="18.8.0"
AIRSHIP_VERSION="18.9.0"

Pod::Spec.new do |s|
s.version = AIRSHIP_VERSION
Expand Down
2 changes: 1 addition & 1 deletion AirshipServiceExtension.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AIRSHIP_VERSION="18.8.0"
AIRSHIP_VERSION="18.9.0"

Pod::Spec.new do |s|
s.version = AIRSHIP_VERSION
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,23 @@

# iOS Changelog

## Version 18.9.0 September 10, 2024
Minor release that introduces `fallback` parameter when requesting permission updates and the permission is denied. This release also contains
a fix for a regression in 18.8.0 where Channel Registration would continuously update for channels that have upgraded from an earlier
SDK versions. Applications using 18.8.0 should update.

#### Changes
- Added new method `Airship.permissionsManager.requestPermission(_:enableAirshipUsageOnGrant:fallback:)` and `Airship.push.enableUserPushNotifications(fallback:)` that allows you to specify a
fallback behavior if the permission is already denied.
- Fixed high CPU issues with embedded messages that define a percent based size.
- Fixed Channel Registration bug that was introduced in 18.8.


## Version 18.8.0 September 6, 2024
Minor release with several enhancements to In-App Automation, Scenes, and Surveys.

**This version has a regression and should be avoided. Please use 18.9.0 or newer instead**

### Changes
- Added support to disable plain markdown (text markup) support in a Scene.
- Added support to theme markdown links in a Scene.
Expand Down

0 comments on commit ddae34a

Please sign in to comment.