diff --git a/Documentation/RELEASE_NOTES.md b/Documentation/RELEASE_NOTES.md index ad8ab07e..240e4098 100644 --- a/Documentation/RELEASE_NOTES.md +++ b/Documentation/RELEASE_NOTES.md @@ -1,4 +1,10 @@ ## Release Notes +## Release Notes for 2.15.1 +#### February 27, 2023 +* Bug Fixes + * Fixed: Fixed: App Inbox layout was reworked from using storyboard to native code implementation for better compatibility with SDK wrappers + + ## Release Notes for 2.15.0 #### February 16, 2023 * Features diff --git a/ExponeaSDK-Notifications.podspec b/ExponeaSDK-Notifications.podspec index df21de34..515f4116 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.0" + s.version = "2.15.1" 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 ab7ced47..f10a6e38 100644 --- a/ExponeaSDK.podspec +++ b/ExponeaSDK.podspec @@ -16,7 +16,7 @@ Pod::Spec.new do |s| # s.name = "ExponeaSDK" - s.version = "2.15.0" + s.version = "2.15.1" 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 7d598db7..240271ba 100644 --- a/ExponeaSDK/Example/Resources/Info.plist +++ b/ExponeaSDK/Example/Resources/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 2.15.0 + 2.15.1 CFBundleURLTypes @@ -30,7 +30,7 @@ CFBundleVersion - 62 + 63 LSRequiresIPhoneOS UIBackgroundModes diff --git a/ExponeaSDK/ExampleNotificationContent/Info.plist b/ExponeaSDK/ExampleNotificationContent/Info.plist index f22ff560..591a30ed 100644 --- a/ExponeaSDK/ExampleNotificationContent/Info.plist +++ b/ExponeaSDK/ExampleNotificationContent/Info.plist @@ -17,9 +17,9 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 2.15.0 + 2.15.1 CFBundleVersion - 62 + 63 NSExtension NSExtensionAttributes diff --git a/ExponeaSDK/ExampleNotificationService/Info.plist b/ExponeaSDK/ExampleNotificationService/Info.plist index 21541e04..2b17851d 100644 --- a/ExponeaSDK/ExampleNotificationService/Info.plist +++ b/ExponeaSDK/ExampleNotificationService/Info.plist @@ -17,9 +17,9 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 2.15.0 + 2.15.1 CFBundleVersion - 62 + 63 NSExtension NSExtensionPointIdentifier diff --git a/ExponeaSDK/ExponeaSDK-Notifications/Supporting Files/Info.plist b/ExponeaSDK/ExponeaSDK-Notifications/Supporting Files/Info.plist index e5ec3ea4..f43666e6 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.0 + 2.15.1 CFBundleVersion - 62 + 63 diff --git a/ExponeaSDK/ExponeaSDK/Supporting Files/Info.plist b/ExponeaSDK/ExponeaSDK/Supporting Files/Info.plist index 1835b12a..59467fb7 100644 --- a/ExponeaSDK/ExponeaSDK/Supporting Files/Info.plist +++ b/ExponeaSDK/ExponeaSDK/Supporting Files/Info.plist @@ -15,9 +15,9 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 2.15.0 + 2.15.1 CFBundleVersion - 62 + 63 NSPrincipalClass diff --git a/ExponeaSDK/ExponeaSDKShared/Classes/Exponea.swift b/ExponeaSDK/ExponeaSDKShared/Classes/Exponea.swift index fd21e4e4..ca3553f4 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.0" + public static let version = "2.15.1" /// 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 f5ae3e48..0438d79b 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.0" +pod "ExponeaSDK", "~> 2.15.1" # If you also use rich push notifications, # add this line to your notification service extension target. -pod "ExponeaSDK-Notifications", "~> 2.15.0" +pod "ExponeaSDK-Notifications", "~> 2.15.1" ``` > Read more about rich push notifications support [here](./Documentation/PUSH.md). @@ -32,7 +32,7 @@ pod "ExponeaSDK-Notifications", "~> 2.15.0" > 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.0 +github "exponea/exponea-ios-sdk" ~> 2.15.1 ``` ## 📱 Demo Application