Skip to content

Commit

Permalink
Merge pull request #798 from Iterable/MOB-9248-Prepare-for-6.5.5
Browse files Browse the repository at this point in the history
[MOB-9248] - Prepare for 6.5.5
  • Loading branch information
Ayyanchira authored Aug 8, 2024
2 parents f3e7bd2 + 4c70bfc commit 8d2bb0f
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.5]
### Added
- Introduced a new configuration option, `RetryPolicy`, in IterableConfig to set the retry policy for JWT token refresh.
- Added the method `pauseAuthRetries(_ pauseRetry: Bool)` to allow pausing the SDK from requesting JWT tokens from the app.

### Changed
- Updated the method `onTokenRegistrationFailed(_ reason: String?)` to `onAuthFailure(_ authFailure: AuthFailure)`. The new `AuthFailure` object provides more detailed information about JWT failures.

## [6.5.4]
### Fixed
- SDK is now compatible with Xcode 16 beta 2
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.4"
s.version = "6.5.5"
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.4"
s.version = "6.5.5"
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.4"
public static let sdkVersion = "6.5.5"

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

1 comment on commit 8d2bb0f

@joshgrant
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just FYI this was a breaking change in our codebase since our implementation no longer conformed to the IterableAuthService protocol. Doing a breaking change in a major version would be better practice.

Please sign in to comment.