diff --git a/Documentation/RELEASE_NOTES.md b/Documentation/RELEASE_NOTES.md index 4353ae61..fb8ebb8c 100644 --- a/Documentation/RELEASE_NOTES.md +++ b/Documentation/RELEASE_NOTES.md @@ -1,10 +1,15 @@ ## Release Notes -## Release Notes for 2.9.1 -#### October 06, 2020 +## Release Notes for 2.9.2 +#### October 07, 2020 * Bug Fixes * Fixed: Xcode 12 compatibility. Test run was broken, new warnings appeared. Good times. * Fixed: Consents fetching issue - consents with null translations caused the request to fail. Translation values are now optional. + +## Release Notes for 2.9.1 +#### October 06, 2020 +* Because of bad push, this release on cocoapods is the same as 2.9.0 + ## Release Notes for 2.9.0 #### September 09, 2020 * Features diff --git a/ExponeaSDK-Notifications.podspec b/ExponeaSDK-Notifications.podspec index 67471cb7..882b1f62 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.9.1" + s.version = "2.9.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 ef379b62..bdbf753e 100644 --- a/ExponeaSDK.podspec +++ b/ExponeaSDK.podspec @@ -16,7 +16,7 @@ Pod::Spec.new do |s| # s.name = "ExponeaSDK" - s.version = "2.9.1" + s.version = "2.9.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 2663f235..c1c94a32 100644 --- a/ExponeaSDK/Example/Resources/Info.plist +++ b/ExponeaSDK/Example/Resources/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 2.9.1 + 2.9.2 CFBundleURLTypes @@ -30,7 +30,7 @@ CFBundleVersion - 46 + 47 LSRequiresIPhoneOS UIBackgroundModes diff --git a/ExponeaSDK/ExampleNotificationContent/Info.plist b/ExponeaSDK/ExampleNotificationContent/Info.plist index e7dfa679..cfc2055f 100644 --- a/ExponeaSDK/ExampleNotificationContent/Info.plist +++ b/ExponeaSDK/ExampleNotificationContent/Info.plist @@ -17,9 +17,9 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 2.9.1 + 2.9.2 CFBundleVersion - 46 + 47 NSExtension NSExtensionAttributes diff --git a/ExponeaSDK/ExampleNotificationService/Info.plist b/ExponeaSDK/ExampleNotificationService/Info.plist index 11fd623d..632f4936 100644 --- a/ExponeaSDK/ExampleNotificationService/Info.plist +++ b/ExponeaSDK/ExampleNotificationService/Info.plist @@ -17,9 +17,9 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 2.9.1 + 2.9.2 CFBundleVersion - 46 + 47 NSExtension NSExtensionPointIdentifier diff --git a/ExponeaSDK/ExponeaSDK-Notifications/Supporting Files/Info.plist b/ExponeaSDK/ExponeaSDK-Notifications/Supporting Files/Info.plist index 9d136002..8a29b6b5 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.9.1 + 2.9.2 CFBundleVersion - 46 + 47 diff --git a/ExponeaSDK/ExponeaSDK/Supporting Files/Info.plist b/ExponeaSDK/ExponeaSDK/Supporting Files/Info.plist index 9bf34c91..3f7eea81 100644 --- a/ExponeaSDK/ExponeaSDK/Supporting Files/Info.plist +++ b/ExponeaSDK/ExponeaSDK/Supporting Files/Info.plist @@ -15,9 +15,9 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 2.9.1 + 2.9.2 CFBundleVersion - 46 + 47 NSPrincipalClass diff --git a/README.md b/README.md index 91659a6b..b20f9094 100644 --- a/README.md +++ b/README.md @@ -19,11 +19,11 @@ It has been written 100% in Swift with ❤️ ```ruby # Add this under your main application target -pod "ExponeaSDK", "~> 2.9.1" +pod "ExponeaSDK", "~> 2.9.2" # If you also use rich push notifications, # add this line to your notification service extension target. -pod "ExponeaSDK-Notifications", "~> 2.9.1" +pod "ExponeaSDK-Notifications", "~> 2.9.2" ``` > Read more about rich push notifications support [here](./Documentation/PUSH.md). @@ -33,7 +33,7 @@ pod "ExponeaSDK-Notifications", "~> 2.9.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.9.1 +github "exponea/exponea-ios-sdk" ~> 2.9.2 ``` ## 📱 Demo Application