Skip to content

Commit

Permalink
Merge branch 'version-6.5.8-beta' of github.com:Iterable/swift-sdk in…
Browse files Browse the repository at this point in the history
…to version-6.5.8-beta
  • Loading branch information
Evan Greer committed Dec 10, 2024
2 parents d7c35be + c284dd4 commit 766950e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [6.5.8-beta1]
### Added
- introduces ThreadSafeOrderedDictionary which is a wrapper around the OrderedDictionary to ensure thread safety. Thanks to @Rspoon3

### Fixed
- Prevents crashes relating to the Core Data's persistent store failing to load. Thanks to @bfahey :)
- Fixed incorrect tracking of pushOpen for push notifications with Wake App enabled. Tracking now happens only when users tap to open the app.

## [6.5.7]
### Fixed
- Fixed deeplink re-routing issue where delegate would only return `false` value. Thanks to @scottasoutherland :)
Expand Down
2 changes: 1 addition & 1 deletion Iterable-iOS-AppExtensions.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "Iterable-iOS-AppExtensions"
s.module_name = "IterableAppExtensions"
s.version = "6.5.7"
s.version = "6.5.8-beta1"
s.summary = "App Extensions for Iterable SDK"

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion Iterable-iOS-SDK.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "Iterable-iOS-SDK"
s.module_name = "IterableSDK"
s.version = "6.5.7"
s.version = "6.5.8-beta1"
s.summary = "Iterable's official SDK for iOS"

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion swift-sdk/IterableAPI.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import UIKit

@objcMembers public final class IterableAPI: NSObject {
/// The current SDK version
public static let sdkVersion = "6.5.7"
public static let sdkVersion = "6.5.8-beta1"

/// The email of the logged in user that this IterableAPI is using
public static var email: String? {
Expand Down

0 comments on commit 766950e

Please sign in to comment.