diff --git a/Documentation/RELEASE_NOTES.md b/Documentation/RELEASE_NOTES.md index 543ceb06..1d6687c9 100644 --- a/Documentation/RELEASE_NOTES.md +++ b/Documentation/RELEASE_NOTES.md @@ -1,4 +1,13 @@ ## Release Notes +## Release Notes for 2.13.0 +#### October 19, 2022 +* Features + * Added feature to handle tracking consent according to DSGVO/GDPR + * Guiding documentation added for Push notification update after certain circumstances +* Bug Fixes + * Fixed: Webview configuration updated according to newer XCode14 + + ## Release Notes for 2.12.3 #### September 20, 2022 * Bug Fixes diff --git a/ExponeaSDK-Notifications.podspec b/ExponeaSDK-Notifications.podspec index 599a9898..c8700df5 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.12.3" + s.version = "2.13.0" 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 ebd54ec4..d7ebeb01 100644 --- a/ExponeaSDK.podspec +++ b/ExponeaSDK.podspec @@ -16,7 +16,7 @@ Pod::Spec.new do |s| # s.name = "ExponeaSDK" - s.version = "2.12.3" + s.version = "2.13.0" 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 00e75026..ef1ca66f 100644 --- a/ExponeaSDK/Example/Resources/Info.plist +++ b/ExponeaSDK/Example/Resources/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 2.12.3 + 2.13.0 CFBundleURLTypes @@ -30,7 +30,7 @@ CFBundleVersion - 58 + 59 LSRequiresIPhoneOS UIBackgroundModes diff --git a/ExponeaSDK/ExampleNotificationContent/Info.plist b/ExponeaSDK/ExampleNotificationContent/Info.plist index 006d8c90..5a9af8dd 100644 --- a/ExponeaSDK/ExampleNotificationContent/Info.plist +++ b/ExponeaSDK/ExampleNotificationContent/Info.plist @@ -17,9 +17,9 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 2.12.3 + 2.13.0 CFBundleVersion - 58 + 59 NSExtension NSExtensionAttributes diff --git a/ExponeaSDK/ExampleNotificationService/Info.plist b/ExponeaSDK/ExampleNotificationService/Info.plist index 8be758e6..d329c0a6 100644 --- a/ExponeaSDK/ExampleNotificationService/Info.plist +++ b/ExponeaSDK/ExampleNotificationService/Info.plist @@ -17,9 +17,9 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 2.12.3 + 2.13.0 CFBundleVersion - 58 + 59 NSExtension NSExtensionPointIdentifier diff --git a/ExponeaSDK/ExponeaSDK-Notifications/Supporting Files/Info.plist b/ExponeaSDK/ExponeaSDK-Notifications/Supporting Files/Info.plist index 0f0a8410..2f506878 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.12.3 + 2.13.0 CFBundleVersion - 58 + 59 diff --git a/ExponeaSDK/ExponeaSDK/Supporting Files/Info.plist b/ExponeaSDK/ExponeaSDK/Supporting Files/Info.plist index f6112ff8..ddfe1e82 100644 --- a/ExponeaSDK/ExponeaSDK/Supporting Files/Info.plist +++ b/ExponeaSDK/ExponeaSDK/Supporting Files/Info.plist @@ -15,9 +15,9 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 2.12.3 + 2.13.0 CFBundleVersion - 58 + 59 NSPrincipalClass diff --git a/ExponeaSDK/ExponeaSDKShared/Classes/Exponea.swift b/ExponeaSDK/ExponeaSDKShared/Classes/Exponea.swift index c3395f2e..6d78dc1d 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.12.3" + public static let version = "2.13.0" /// 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 4f67287b..025bcecc 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ![Platform](https://img.shields.io/badge/Platform-iOS-lightgrey.svg?style=flat) ![Platform](https://img.shields.io/badge/Swift-4.1-green.svg?style=flat) -[![License](https://img.shields.io/badge/License-Apache%202.0-yellow.svg)](https://opensource.org/licenses/Apache-2.0) +[![License](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) ## Exponea iOS SDK @@ -12,18 +12,17 @@ This library allows you to interact from your application or game with the Expon It has been written 100% in Swift with ❤️ - ## 📦 Installation ### CocoaPods ```ruby # Add this under your main application target -pod "ExponeaSDK", "~> 2.12.3" +pod "ExponeaSDK", "~> 2.13.0" # If you also use rich push notifications, # add this line to your notification service extension target. -pod "ExponeaSDK-Notifications", "~> 2.12.3" +pod "ExponeaSDK-Notifications", "~> 2.13.0" ``` > Read more about rich push notifications support [here](./Documentation/PUSH.md). @@ -33,7 +32,7 @@ pod "ExponeaSDK-Notifications", "~> 2.12.3" > 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.12.3 +github "exponea/exponea-ios-sdk" ~> 2.13.0 ``` ## 📱 Demo Application