Skip to content

Commit

Permalink
Release 17.7.2 (#2927)
Browse files Browse the repository at this point in the history
* Clear thomas dismiss handler

* Release 17.7.2

* Update CHANGELOG.md
  • Loading branch information
rlepinski authored Jan 24, 2024
1 parent fec4c2b commit 4c37822
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 7 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="17.7.1"
AIRSHIP_VERSION="17.7.2"

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 = 17.7.1
CURRENT_PROJECT_VERSION = 17.7.2

// 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 @@ -4,7 +4,7 @@ import Foundation

@objc(UAirshipVersion)
public class AirshipVersion: NSObject {
public static let version = "17.7.1"
public static let version = "17.7.2"

@objc
public class func get() -> String {
Expand Down
3 changes: 2 additions & 1 deletion Airship/AirshipCore/Source/ThomasEnvironment.swift
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,8 @@ class ThomasEnvironment: ObservableObject {
if !self.isDismissed {
self.isDismissed = true
callback()
onDismiss?()
self.onDismiss?()
self.onDismiss = nil
}
}

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="17.7.1"
AIRSHIP_VERSION="17.7.2"

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="17.7.1"
AIRSHIP_VERSION="17.7.2"

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="17.7.1"
AIRSHIP_VERSION="17.7.2"

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

[Migration Guides](https://github.com/urbanairship/ios-library/tree/main/Documentation/Migration)

## Version 17.7.2 January 24, 2023
Patch release improving SDK stability and a fix for core-data warnings with Xcode 15.

### Changes
- Override hashing for MessageCenterMessage
- Fixed core-data warnings
- Fixed potential crash due to de-duping conflicts events in AirshipContact

## Version 17.7.1 December 18, 2023
Patch release that fixes an issue with app background events being attributed to the wrong session ID. This issue was introduced in 17.5.0 and impacts
session duration times in Performance Analytics. Applications that rely on that report should update.
Expand Down

0 comments on commit 4c37822

Please sign in to comment.