Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 6.3.0

- Add In-App Message Interceptor API `OptimoveInApp.setInAppMessageInterceptor(_:)` to allow apps to control when in-app messages are shown or suppressed based on custom logic. If no decision is made within the timeout (default 5s), the message is automatically suppressed.

## 6.2.6

- Remove semaphore wait in session end to avoid QoS inversion during background flush
Expand Down
2 changes: 1 addition & 1 deletion OptimoveCore.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'OptimoveCore'
s.version = '6.2.6'
s.version = '6.3.0'
s.summary = 'Official Optimove SDK for iOS. Core framework.'
s.description = 'The core framework is used to share code-base between other Optimove frameworks.'
s.homepage = 'https://github.com/optimove-tech/Optimove-SDK-iOS'
Expand Down
2 changes: 1 addition & 1 deletion OptimoveCore/Sources/Classes/Constants/SDKVersion.swift
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// Copyright © 2019 Optimove. All rights reserved.

public let SDKVersion = "6.2.6"
public let SDKVersion = "6.3.0"
2 changes: 1 addition & 1 deletion OptimoveNotificationServiceExtension.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'OptimoveNotificationServiceExtension'
s.version = '6.2.6'
s.version = '6.3.0'
s.summary = 'Official Optimove SDK for iOS. Notification service extension framework.'
s.description = 'The notification service extension is used for handling additional content in push notifications.'
s.homepage = 'https://github.com/optimove-tech/Optimove-SDK-iOS'
Expand Down
2 changes: 1 addition & 1 deletion OptimoveSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'OptimoveSDK'
s.version = '6.2.6'
s.version = '6.3.0'
s.summary = 'Official Optimove SDK for iOS.'
s.description = 'The Optimove SDK framework is used for reporting events and receive push notifications.'
s.homepage = 'https://github.com/optimove-tech/Optimove-SDK-iOS'
Expand Down
Loading
Loading