Skip to content

Commit b57c7f5

Browse files
evantk91Evan Greersumeruchat
authored
[MOB-10605] prepares version 6.5.9 release (#885)
Co-authored-by: Evan Greer <evan.greer@evan.greer> Co-authored-by: Sumeru Chatterjee <sumeru.chatterjee@iterable.com>
1 parent 6f00e45 commit b57c7f5

6 files changed

+13
-5
lines changed

.github/workflows/build-and-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: pull_request
44

55
jobs:
66
run-tests-job:
7-
runs-on: macos-latest
7+
runs-on: macos-14
88

99
steps:
1010
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

.github/workflows/e2e.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: pull_request
44

55
jobs:
66
run-e2e-job:
7-
runs-on: macos-latest
7+
runs-on: macos-14
88

99
steps:
1010
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](http://semver.org/).
55

6+
## [6.5.9]
7+
### Added
8+
- Support for JSON-only in-app messages, JSON-only messages are now handled by the onNewInApp handler and consumed after retrieval
9+
- Enhanced notification state tracking to align with system notification permissions changes
10+
11+
### Changed
12+
- reorganized files and updated documentation url in podspec
13+
614
## [6.5.8]
715
### Fixed
816
- Fixed incorrect tracking of pushOpen for push notifications with Wake App enabled. Tracking now happens only when users tap to open the app.

Iterable-iOS-AppExtensions.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = "Iterable-iOS-AppExtensions"
33
s.module_name = "IterableAppExtensions"
4-
s.version = "6.5.8"
4+
s.version = "6.5.9"
55
s.summary = "App Extensions for Iterable SDK"
66

77
s.description = <<-DESC

Iterable-iOS-SDK.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = "Iterable-iOS-SDK"
33
s.module_name = "IterableSDK"
4-
s.version = "6.5.8"
4+
s.version = "6.5.9"
55
s.summary = "Iterable's official SDK for iOS"
66

77
s.description = <<-DESC

swift-sdk/SDK/IterableAPI.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import UIKit
77

88
@objcMembers public final class IterableAPI: NSObject {
99
/// The current SDK version
10-
public static let sdkVersion = "6.5.8"
10+
public static let sdkVersion = "6.5.9"
1111

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

0 commit comments

Comments
 (0)