diff --git a/CHANGELOG.MD b/CHANGELOG.MD index 50305ac8..22a7abf2 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -1,3 +1,9 @@ +## 6.13.0 +### Fix +- HTTP 414 issue (Targeting url length issue) +- Update continue button state on mood selection +### Update +- Added Campaign Reactivation ( Now campaign can show more than once) ## 6.12.3 ### Fix - App Freezing on ios 16 after campaign finished/cancelled diff --git a/Package.swift b/Package.swift index ae11162d..2cb52d74 100644 --- a/Package.swift +++ b/Package.swift @@ -3,8 +3,8 @@ import PackageDescription -let version = "6.12.3" -let checksum = "af25a78866cf6a0c261c2dc1be3b47953338f4d7fb760f0741e447e1c9525fb2" +let version = "6.13.0" +let checksum = "a41f87dfb39b45f57cddf3102897b16c00cff0cf402fde64874c17311ce70782" let url = "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v\(version)/UsabillaXCFramework.zip" let package = Package( diff --git a/Readme.MD b/Readme.MD index 00f2d40b..07f168f7 100644 --- a/Readme.MD +++ b/Readme.MD @@ -1,7 +1,7 @@ # Usabilla for Apps - iOS SDK Usabilla for Apps allows you to collect feedback from your users with great ease and flexibility. -Read the [Standard Events](#standardevents) section for a explanation of the new fetures introduces in SDK 6.12.2 +Read the [Default Events](#defaultevents) section for a explanation of the new fetures introduces in SDK 6.12.0 * * * - [Usabilla for Apps - iOS SDK](#usabilla-for-apps---ios-sdk) @@ -19,6 +19,7 @@ Read the [Standard Events](#standardevents) section for a explanation of the new - [Targeting options](#targeting-options) - [Campaign toggling](#campaign-toggling) - [Campaign submission callback](#campaign-submission-callback) + - [Reactivate a campaign](#reactivate-a-campaign) - [Resetting all campaigns](#resetting-all-campaigns) - [Managing an existing campaign](#managing-an-existing-campaign) - [Campaign results](#campaign-results) @@ -85,7 +86,7 @@ use_frameworks! target 'YourProjectTarget' do -pod 'Usabilla', '~> 6.12.3' +pod 'Usabilla', '~> 6.13.0' End ``` @@ -243,6 +244,9 @@ func campaignDidClose(withFeedbackResult result: FeedbackResult, isRedirectToApp ``` Unlike the Passive feedback method, the campaigns method only returns one [FeedbackResult](#feedbackresult) and is called only once. +### Reactivate a campaign +**Note: From 6.13.0 we are introducing campaign reactivation with these feature during campaign creation or after creation, a campaign can be added / modified with reactivation duration which is in days - for example if a campaign sets with reactivation in 7 days i.e. A campaign can be shown again after 7 days if all the prior conditions for campaign met again ( like language, percentage, repeatition/ trigger).** + ### Resetting all campaigns During development and testing, it might be useful to reset the status of your campaigns and allow them to be displayed again. diff --git a/Usabilla.json b/Usabilla.json index 7086f0a2..de8adec3 100644 --- a/Usabilla.json +++ b/Usabilla.json @@ -1,4 +1,5 @@ { + "6.13.0": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.13.0/UsabillaXCFramework.zip", "6.12.3": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.12.3/UsabillaXCFramework.zip", "6.12.2": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.12.2/UsabillaXCFramework.zip", "6.12.1": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.12.1/UsabillaXCFramework.zip", diff --git a/Usabilla.podspec b/Usabilla.podspec index 135e71d9..e4f77f6a 100644 --- a/Usabilla.podspec +++ b/Usabilla.podspec @@ -1,4 +1,4 @@ -version = "6.12.3" +version = "6.13.0" Pod::Spec.new do |s|