From 1b2b50e20c3145c09139f25dc41091dd5cefafd8 Mon Sep 17 00:00:00 2001 From: Aishwarya Nanna Date: Mon, 22 Apr 2024 18:44:28 +0530 Subject: [PATCH 1/3] - Support ios sdk v6.2.1 --- CHANGELOG.md | 20 ++++++++++++++++++++ README.md | 2 +- package.json | 2 +- plugin.xml | 4 ++-- www/CleverTap.js | 2 +- 5 files changed, 25 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed73e536..d42c7546 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ Change Log ========== +Version 3.1.0 *(April , 2024)* +------------------------------------------- +#### New Features +**Android specific** + +**iOS specific** +* Supports [CleverTap iOS SDK v6.2.1](https://github.com/CleverTap/clevertap-ios-sdk/releases/tag/6.2.1). +* Adds privacy manifests. + +**Common for both android and iOS** + +#### Bug Fixes +**Android specific** + +**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". +* Fixes a build error related to privacy manifests when statically linking the SDK using Cocoapods. + Version 3.0.0 *(April 17, 2024)* ------------------------------------------- #### New Features @@ -9,6 +28,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]); } From 1a8eadb6673a77416fbee31f97243e3d534188b7 Mon Sep 17 00:00:00 2001 From: Akash Malhotra Date: Thu, 25 Apr 2024 16:33:39 +0530 Subject: [PATCH 2/3] Update CHANGELOG.md --- CHANGELOG.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d42c7546..2a11c568 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,23 +1,18 @@ Change Log ========== -Version 3.1.0 *(April , 2024)* +Version 3.1.0 *(April 25, 2024)* ------------------------------------------- #### New Features -**Android specific** **iOS specific** * Supports [CleverTap iOS SDK v6.2.1](https://github.com/CleverTap/clevertap-ios-sdk/releases/tag/6.2.1). * Adds privacy manifests. -**Common for both android and iOS** - #### Bug Fixes -**Android specific** **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". -* Fixes a build error related to privacy manifests when statically linking the SDK using Cocoapods. Version 3.0.0 *(April 17, 2024)* ------------------------------------------- From b8df328fedc5baaa718e6ec0b559766839c30eb2 Mon Sep 17 00:00:00 2001 From: Aishwarya Nanna Date: Sat, 27 Apr 2024 13:18:45 +0530 Subject: [PATCH 3/3] - Update Changelog --- CHANGELOG.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a11c568..28fd3cc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,13 @@ Change Log ========== -Version 3.1.0 *(April 25, 2024)* +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".