From 25551ac0cbe705d28bc28ce8d6183ed84e113b53 Mon Sep 17 00:00:00 2001 From: adam1929 <103995671+adam1929@users.noreply.github.com> Date: Mon, 6 Mar 2023 16:20:00 +0100 Subject: [PATCH] feat/Version 2.15.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 240e4098..fc4f2989 100644 --- a/Documentation/RELEASE_NOTES.md +++ b/Documentation/RELEASE_NOTES.md @@ -1,4 +1,10 @@ ## Release Notes +## Release Notes for 2.15.2 +#### March 06, 2023 +* Bug Fixes + * Fixed: AppInbox detail layout fixes + + ## Release Notes for 2.15.1 #### February 27, 2023 * Bug Fixes diff --git a/ExponeaSDK-Notifications.podspec b/ExponeaSDK-Notifications.podspec index 515f4116..9661e65a 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.15.1" + s.version = "2.15.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 f10a6e38..49c73243 100644 --- a/ExponeaSDK.podspec +++ b/ExponeaSDK.podspec @@ -16,7 +16,7 @@ Pod::Spec.new do |s| # s.name = "ExponeaSDK" - s.version = "2.15.1" + s.version = "2.15.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 240271ba..0c90032c 100644 --- a/ExponeaSDK/Example/Resources/Info.plist +++ b/ExponeaSDK/Example/Resources/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 2.15.1 + 2.15.2 CFBundleURLTypes @@ -30,7 +30,7 @@ CFBundleVersion - 63 + 64 LSRequiresIPhoneOS UIBackgroundModes diff --git a/ExponeaSDK/ExampleNotificationContent/Info.plist b/ExponeaSDK/ExampleNotificationContent/Info.plist index 591a30ed..52203df3 100644 --- a/ExponeaSDK/ExampleNotificationContent/Info.plist +++ b/ExponeaSDK/ExampleNotificationContent/Info.plist @@ -17,9 +17,9 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 2.15.1 + 2.15.2 CFBundleVersion - 63 + 64 NSExtension NSExtensionAttributes diff --git a/ExponeaSDK/ExampleNotificationService/Info.plist b/ExponeaSDK/ExampleNotificationService/Info.plist index 2b17851d..c4fad053 100644 --- a/ExponeaSDK/ExampleNotificationService/Info.plist +++ b/ExponeaSDK/ExampleNotificationService/Info.plist @@ -17,9 +17,9 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 2.15.1 + 2.15.2 CFBundleVersion - 63 + 64 NSExtension NSExtensionPointIdentifier diff --git a/ExponeaSDK/ExponeaSDK-Notifications/Supporting Files/Info.plist b/ExponeaSDK/ExponeaSDK-Notifications/Supporting Files/Info.plist index f43666e6..dd822e16 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.15.1 + 2.15.2 CFBundleVersion - 63 + 64 diff --git a/ExponeaSDK/ExponeaSDK/Supporting Files/Info.plist b/ExponeaSDK/ExponeaSDK/Supporting Files/Info.plist index 59467fb7..55841907 100644 --- a/ExponeaSDK/ExponeaSDK/Supporting Files/Info.plist +++ b/ExponeaSDK/ExponeaSDK/Supporting Files/Info.plist @@ -15,9 +15,9 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 2.15.1 + 2.15.2 CFBundleVersion - 63 + 64 NSPrincipalClass diff --git a/ExponeaSDK/ExponeaSDKShared/Classes/Exponea.swift b/ExponeaSDK/ExponeaSDKShared/Classes/Exponea.swift index ca3553f4..09a4769e 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.15.1" + public static let version = "2.15.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 0438d79b..91f273a7 100644 --- a/README.md +++ b/README.md @@ -18,11 +18,11 @@ It has been written 100% in Swift with ❤️ ```ruby # Add this under your main application target -pod "ExponeaSDK", "~> 2.15.1" +pod "ExponeaSDK", "~> 2.15.2" # If you also use rich push notifications, # add this line to your notification service extension target. -pod "ExponeaSDK-Notifications", "~> 2.15.1" +pod "ExponeaSDK-Notifications", "~> 2.15.2" ``` > Read more about rich push notifications support [here](./Documentation/PUSH.md). @@ -32,7 +32,7 @@ pod "ExponeaSDK-Notifications", "~> 2.15.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 support rich push notifications. Read more about rich push notifications [here](./Documentation/PUSH.md). ``` -github "exponea/exponea-ios-sdk" ~> 2.15.1 +github "exponea/exponea-ios-sdk" ~> 2.15.2 ``` ## 📱 Demo Application