diff --git a/Airship.podspec b/Airship.podspec index 8b0f160fe..f781c39f9 100644 --- a/Airship.podspec +++ b/Airship.podspec @@ -1,4 +1,4 @@ -AIRSHIP_VERSION="19.0.0" +AIRSHIP_VERSION="19.0.1" Pod::Spec.new do |s| s.version = AIRSHIP_VERSION diff --git a/Airship/AirshipConfig.xcconfig b/Airship/AirshipConfig.xcconfig index 96d6e41a9..6816e61f6 100644 --- a/Airship/AirshipConfig.xcconfig +++ b/Airship/AirshipConfig.xcconfig @@ -1,3 +1,3 @@ //* Copyright Airship and Contributors */ -CURRENT_PROJECT_VERSION = 19.0.0 +CURRENT_PROJECT_VERSION = 19.0.1 diff --git a/Airship/AirshipCore/Source/AirshipVersion.swift b/Airship/AirshipCore/Source/AirshipVersion.swift index 3efdfa552..8f0b78897 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 = "19.0.0" + public static let version = "19.0.1" public static func get() -> String { return version } diff --git a/AirshipDebug.podspec b/AirshipDebug.podspec index 96487e202..eeeecc7c3 100644 --- a/AirshipDebug.podspec +++ b/AirshipDebug.podspec @@ -1,4 +1,4 @@ -AIRSHIP_VERSION="19.0.0" +AIRSHIP_VERSION="19.0.1" Pod::Spec.new do |s| s.version = AIRSHIP_VERSION diff --git a/AirshipServiceExtension.podspec b/AirshipServiceExtension.podspec index 20da63c6a..a310322c8 100644 --- a/AirshipServiceExtension.podspec +++ b/AirshipServiceExtension.podspec @@ -1,4 +1,4 @@ -AIRSHIP_VERSION="19.0.0" +AIRSHIP_VERSION="19.0.1" Pod::Spec.new do |s| s.version = AIRSHIP_VERSION diff --git a/CHANGELOG.md b/CHANGELOG.md index 89bc34bc6..f90ea2e71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # iOS Changelog +## Version 19.0.1 January 29, 2025 +Patch release that fixes a crash when the device toggles airplane mode. Apps using 19.0.0 should update. + +### Changes +- Fixed crash in `WorkConditionsMonitor` when the device toggles airplane mode. +- Added `@MainActor` to `RegistrationDelegate` protocol methods. +- Updated default dismiss button color from white to black for landing pages to match Android. +- Removed top padding on modal and full screen IAAs when using header_media_body and header_body_media without anything above the media. + ## Version 19.0.0 January 16, 2025 Major SDK release with several breaking changes. see the [Migration Guide](https://github.com/urbanairship/ios-library/tree/main/Documentation/Migration/migration-guide-18-19.md) for more info.