diff --git a/CHANGELOG.md b/CHANGELOG.md index ed73e536..28fd3cc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ Change Log ========== +Version 3.1.0 *(April 27, 2024)* +------------------------------------------- +#### New Features +**iOS specific** +* Supports [CleverTap iOS SDK v6.2.1](https://github.com/CleverTap/clevertap-ios-sdk/releases/tag/6.2.1). +* Adds privacy manifests. + +#### Bug Fixes +**iOS specific** +* Fixes crash due to out of bounds in NSLocale implementation. +* Fixes a bug where client side in-apps were not discarded when rendering status is set to "discard". + Version 3.0.0 *(April 17, 2024)* ------------------------------------------- #### New Features @@ -9,6 +21,7 @@ Version 3.0.0 *(April 17, 2024)* **iOS specific** * Supports [CleverTap iOS SDK v6.0.0](https://github.com/CleverTap/clevertap-ios-sdk/releases/tag/6.0.0). +* Adds support for client-side in-apps. **Common for both android and iOS** * Adds new public APIs, `fetchInApps` and `clearInAppResources` to support client-side in-apps. diff --git a/README.md b/README.md index 32f6041c..f4acb332 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To get started, sign up [here](https://clevertap.com/live-product-demo/). ## ✅ Supported Versions - [CleverTap Android SDK version 6.0.0](https://github.com/CleverTap/clevertap-android-sdk/releases/tag/corev6.0.0_ptv1.2.2) -- [CleverTap iOS SDK version 6.0.0](https://github.com/CleverTap/clevertap-ios-sdk/releases/tag/6.0.0) +- [CleverTap iOS SDK version 6.2.1](https://github.com/CleverTap/clevertap-ios-sdk/releases/tag/6.2.1) ## 🚀 Installation and Quick Start diff --git a/package.json b/package.json index d63f5569..7b0af8ed 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "clevertap-cordova", - "version": "3.0.0", + "version": "3.1.0", "description": "CleverTap Plugin for Cordova/PhoneGap", "cordova": { "id": "clevertap-cordova", diff --git a/plugin.xml b/plugin.xml index f69c8a4e..8f8e7b64 100644 --- a/plugin.xml +++ b/plugin.xml @@ -1,5 +1,5 @@ - + CleverTap CleverTap Plugin for Cordova/PhoneGap Commercial @@ -46,7 +46,7 @@ - + diff --git a/www/CleverTap.js b/www/CleverTap.js index ca906f45..4aed47bc 100644 --- a/www/CleverTap.js +++ b/www/CleverTap.js @@ -7,7 +7,7 @@ var CleverTap = function () { const libName = 'Cordova'; - const libVersion = 30000; + const libVersion = 30100; cordova.exec(null, null, "CleverTapPlugin", "setLibrary", [libName, libVersion]); }