diff --git a/Airship.podspec b/Airship.podspec index ea93b57af..0a94869f6 100644 --- a/Airship.podspec +++ b/Airship.podspec @@ -1,4 +1,4 @@ -AIRSHIP_VERSION="18.7.1" +AIRSHIP_VERSION="18.7.2" Pod::Spec.new do |s| s.version = AIRSHIP_VERSION diff --git a/Airship/AirshipConfig.xcconfig b/Airship/AirshipConfig.xcconfig index 7dd305cb7..18b2c149e 100644 --- a/Airship/AirshipConfig.xcconfig +++ b/Airship/AirshipConfig.xcconfig @@ -1,6 +1,6 @@ //* Copyright Airship and Contributors */ -CURRENT_PROJECT_VERSION = 18.7.1 +CURRENT_PROJECT_VERSION = 18.7.2 // Uncomment to include the preview build warning // OTHER_CFLAGS = $(inherited) -DUA_PREVIEW=1 diff --git a/Airship/AirshipCore/Source/AirshipVersion.swift b/Airship/AirshipCore/Source/AirshipVersion.swift index 970732faf..15d7bc2d6 100644 --- a/Airship/AirshipCore/Source/AirshipVersion.swift +++ b/Airship/AirshipCore/Source/AirshipVersion.swift @@ -3,7 +3,7 @@ import Foundation public struct AirshipVersion { - public static let version = "18.7.1" + public static let version = "18.7.2" public static func get() -> String { return version } diff --git a/AirshipContentExtension.podspec b/AirshipContentExtension.podspec index d5d125dde..2953ca881 100644 --- a/AirshipContentExtension.podspec +++ b/AirshipContentExtension.podspec @@ -1,4 +1,4 @@ -AIRSHIP_VERSION="18.7.1" +AIRSHIP_VERSION="18.7.2" Pod::Spec.new do |s| s.version = AIRSHIP_VERSION diff --git a/AirshipDebug.podspec b/AirshipDebug.podspec index b2649b262..125d9eb27 100644 --- a/AirshipDebug.podspec +++ b/AirshipDebug.podspec @@ -1,4 +1,4 @@ -AIRSHIP_VERSION="18.7.1" +AIRSHIP_VERSION="18.7.2" Pod::Spec.new do |s| s.version = AIRSHIP_VERSION diff --git a/AirshipServiceExtension.podspec b/AirshipServiceExtension.podspec index aec1fa6d9..db6a1550f 100644 --- a/AirshipServiceExtension.podspec +++ b/AirshipServiceExtension.podspec @@ -1,4 +1,4 @@ -AIRSHIP_VERSION="18.7.1" +AIRSHIP_VERSION="18.7.2" Pod::Spec.new do |s| s.version = AIRSHIP_VERSION diff --git a/CHANGELOG.md b/CHANGELOG.md index e4cb0c534..607e8e037 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # iOS Changelog +## Version 18.7.2 August 9, 2024 +Patch release that fixes in-app experience displays when resuming from a paused state. Apps that use in-app experiences are encouraged to update. + +### Changes +- Fixed Automation Engine updates when pause state changes. + ## Version 18.7.1 August 1, 2024 Patch release that prevents In-App Automation, Scenes, and Surveys from being able to trigger off custom events or screen views when analytics is disabled. The actual event was not being tracked by Airship in these cases, just processed locally. @@ -8,7 +14,6 @@ when analytics is disabled. The actual event was not being tracked by Airship in ### Changes - Prevent screen view and custom events from being processed by automations when analytics is disabled. - ## Version 18.7.0 July 30, 2024 Minor release that fixes some layout issues with images and videos in a Scene, accessibility improvements, and fixes a potential crash with JSON encoding/decoding due to using a JSONEncoder/JSONDecoder across threads.