Skip to content

Commit

Permalink
Merge pull request #238 from CleverTap/develop
Browse files Browse the repository at this point in the history
Release v3.1.0
  • Loading branch information
AishwaryaNanna authored Apr 27, 2024
2 parents 8bf23df + 78f5d46 commit 0743ce0
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 5 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions plugin.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="clevertap-cordova" version="3.0.0">
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="clevertap-cordova" version="3.1.0">
<name>CleverTap</name>
<description>CleverTap Plugin for Cordova/PhoneGap</description>
<license>Commercial</license>
Expand Down Expand Up @@ -46,7 +46,7 @@
<source url="https://github.com/CocoaPods/Specs.git"/>
</config>
<pods>
<pod name="CleverTap-iOS-SDK" spec="6.0.0" />
<pod name="CleverTap-iOS-SDK" spec="6.2.1" />
</pods>
</podspec>
<!-- <framework src="CleverTap-iOS-SDK" type="podspec" spec="5.1.2" />-->
Expand Down
2 changes: 1 addition & 1 deletion www/CleverTap.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

var CleverTap = function () {
const libName = 'Cordova';
const libVersion = 30000;
const libVersion = 30100;
cordova.exec(null, null, "CleverTapPlugin", "setLibrary", [libName, libVersion]);
}

Expand Down

0 comments on commit 0743ce0

Please sign in to comment.