From 323fccfeb6fa9e2b9856d500f0e83566edb7a342 Mon Sep 17 00:00:00 2001 From: Ankmara <118185796+Ankmara@users.noreply.github.com> Date: Wed, 10 Apr 2024 09:51:58 +0200 Subject: [PATCH] feat/Version 2.25.2 --- Documentation/release-notes.md | 6 ++++++ ExponeaSDK-Notifications.podspec | 2 +- ExponeaSDK.podspec | 2 +- ExponeaSDK/Example/Resources/Info.plist | 4 ++-- ExponeaSDK/ExampleNotificationContent/Info.plist | 4 ++-- ExponeaSDK/ExampleNotificationService/Info.plist | 4 ++-- .../ExponeaSDK-Notifications/Supporting Files/Info.plist | 4 ++-- ExponeaSDK/ExponeaSDK/Supporting Files/Info.plist | 4 ++-- ExponeaSDK/ExponeaSDKShared/Classes/Exponea.swift | 2 +- README.md | 6 +++--- 10 files changed, 22 insertions(+), 16 deletions(-) diff --git a/Documentation/release-notes.md b/Documentation/release-notes.md index 198ae6ec..5cf92234 100644 --- a/Documentation/release-notes.md +++ b/Documentation/release-notes.md @@ -7,6 +7,12 @@ parentDocSlug: ios-sdk --- ## Release Notes +## Release Notes for 2.25.2 +#### April 10, 2024 +* Bug Fixes + * Fixed: SDK Privacy manifest file is not linked correctly for SPM usage + + ## Release Notes for 2.25.1 #### April 09, 2024 * Bug Fixes diff --git a/ExponeaSDK-Notifications.podspec b/ExponeaSDK-Notifications.podspec index b7dd87f9..73f4727f 100644 --- a/ExponeaSDK-Notifications.podspec +++ b/ExponeaSDK-Notifications.podspec @@ -16,7 +16,7 @@ Pod::Spec.new do |s| # s.name = "ExponeaSDK-Notifications" - s.version = "2.25.1" + s.version = "2.25.2" s.summary = "A completementary extension-safe framework for supporting rich push notifications in Exponea SDK." # This description is used to generate tags and improve search results. diff --git a/ExponeaSDK.podspec b/ExponeaSDK.podspec index 21bc6392..a05c22e0 100644 --- a/ExponeaSDK.podspec +++ b/ExponeaSDK.podspec @@ -16,7 +16,7 @@ Pod::Spec.new do |s| # s.name = "ExponeaSDK" - s.version = "2.25.1" + s.version = "2.25.2" s.summary = "Exponea SDK used to track and fetch data from Exponea Experience Cloud." # This description is used to generate tags and improve search results. diff --git a/ExponeaSDK/Example/Resources/Info.plist b/ExponeaSDK/Example/Resources/Info.plist index 0741cceb..e77e45eb 100644 --- a/ExponeaSDK/Example/Resources/Info.plist +++ b/ExponeaSDK/Example/Resources/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 2.25.1 + 2.25.2 CFBundleURLTypes @@ -30,7 +30,7 @@ CFBundleVersion - 82 + 83 LSRequiresIPhoneOS UIApplicationSceneManifest diff --git a/ExponeaSDK/ExampleNotificationContent/Info.plist b/ExponeaSDK/ExampleNotificationContent/Info.plist index 0deba69c..b8533520 100644 --- a/ExponeaSDK/ExampleNotificationContent/Info.plist +++ b/ExponeaSDK/ExampleNotificationContent/Info.plist @@ -17,9 +17,9 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 2.25.1 + 2.25.2 CFBundleVersion - 82 + 83 NSExtension NSExtensionAttributes diff --git a/ExponeaSDK/ExampleNotificationService/Info.plist b/ExponeaSDK/ExampleNotificationService/Info.plist index eb9b6e81..96b8bcaf 100644 --- a/ExponeaSDK/ExampleNotificationService/Info.plist +++ b/ExponeaSDK/ExampleNotificationService/Info.plist @@ -17,9 +17,9 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 2.25.1 + 2.25.2 CFBundleVersion - 82 + 83 NSExtension NSExtensionPointIdentifier diff --git a/ExponeaSDK/ExponeaSDK-Notifications/Supporting Files/Info.plist b/ExponeaSDK/ExponeaSDK-Notifications/Supporting Files/Info.plist index 6a70e68e..5167ecd6 100644 --- a/ExponeaSDK/ExponeaSDK-Notifications/Supporting Files/Info.plist +++ b/ExponeaSDK/ExponeaSDK-Notifications/Supporting Files/Info.plist @@ -15,8 +15,8 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 2.25.1 + 2.25.2 CFBundleVersion - 82 + 83 diff --git a/ExponeaSDK/ExponeaSDK/Supporting Files/Info.plist b/ExponeaSDK/ExponeaSDK/Supporting Files/Info.plist index fba02709..38e32b74 100644 --- a/ExponeaSDK/ExponeaSDK/Supporting Files/Info.plist +++ b/ExponeaSDK/ExponeaSDK/Supporting Files/Info.plist @@ -15,9 +15,9 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 2.25.1 + 2.25.2 CFBundleVersion - 82 + 83 NSPrincipalClass diff --git a/ExponeaSDK/ExponeaSDKShared/Classes/Exponea.swift b/ExponeaSDK/ExponeaSDKShared/Classes/Exponea.swift index 063a9a5f..0fd5ed15 100644 --- a/ExponeaSDK/ExponeaSDKShared/Classes/Exponea.swift +++ b/ExponeaSDK/ExponeaSDKShared/Classes/Exponea.swift @@ -9,7 +9,7 @@ import Foundation public class Exponea { - public static let version = "2.25.1" + public static let version = "2.25.2" /// A logger used to log all messages from the SDK. public static var logger: Logger = Logger() diff --git a/README.md b/README.md index a1101cf4..4faaf6d3 100644 --- a/README.md +++ b/README.md @@ -21,11 +21,11 @@ It has been written 100% in Swift with ❤️ ```ruby # Add this under your main application target -pod "ExponeaSDK", "~> 2.25.1" +pod "ExponeaSDK", "~> 2.25.2" # If you also use rich push notifications, # add this line to your notification service extension target. -pod "ExponeaSDK-Notifications", "~> 2.25.1" +pod "ExponeaSDK-Notifications", "~> 2.25.2" ``` ### Carthage @@ -33,7 +33,7 @@ pod "ExponeaSDK-Notifications", "~> 2.25.1" > Carthage will by default build both `ExponeaSDK` and `ExponeaSDKNotifications` frameworks. The latter one is only supposed to be used in a notification service extension if you wish to support rich push notifications. Read more about rich push notifications [here](https://documentation.bloomreach.com/engagement/docs/ios-sdk-push-notifications#rich-push-notifications). ``` -github "exponea/exponea-ios-sdk" ~> 2.25.1 +github "exponea/exponea-ios-sdk" ~> 2.25.2 ``` > And then in your Command line tool type ```carthage update --use-xcframeworks --platform ios```