Skip to content

Commit 0cc2214

Browse files
Merge pull request #491 from CleverTap/develop
Release 3.8.1
2 parents 8bbf7de + 7de4f07 commit 0cc2214

File tree

5 files changed

+16
-5
lines changed

5 files changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
Change Log
22
==========
33

4+
Version 3.8.1 *(January 14 2026)*
5+
-------------------------------------------
6+
**What's new**
7+
* **[iOS Platform]**
8+
* Supports [CleverTap iOS SDK v7.4.2](https://github.com/CleverTap/clevertap-ios-sdk/blob/master/CHANGELOG.md#version-742-january-14-2026).
9+
10+
**Bug Fixes**
11+
* **[iOS Platform]**
12+
* Fixes a bug where DOB value is passed incorrectly when performing profile events.
13+
* Optimizes app initialization sequence by loading variable and variant caches earlier in the startup process.
14+
415
Version 3.8.0 *(December 22 2025)*
516
-------------------------------------------
617
**What's new**

android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ android {
3535
defaultConfig {
3636
minSdkVersion 21
3737
targetSdkVersion 35
38-
versionCode 380
39-
versionName "3.8.0"
38+
versionCode 381
39+
versionName "3.8.1"
4040
buildConfigField("boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString())
4141
}
4242

clevertap-react-native.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Pod::Spec.new do |s|
2424
s.dependency 'React-Core'
2525
end
2626

27-
s.dependency 'CleverTap-iOS-SDK', '7.4.1'
27+
s.dependency 'CleverTap-iOS-SDK', '7.4.2'
2828

2929
if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then
3030
s.pod_target_xcconfig = {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "clevertap-react-native",
3-
"version": "3.8.0",
3+
"version": "3.8.1",
44
"description": "CleverTap React Native SDK.",
55
"main": "src/index.js",
66
"types": "src/index.d.ts",

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const EventEmitter = Platform.select({
1212
* @param {int} libVersion - The updated library version. If current version is 1.1.0 then pass as 10100
1313
*/
1414
const libName = 'React-Native';
15-
const libVersion = 30800;
15+
const libVersion = 30801;
1616
CleverTapReact.setLibrary(libName,libVersion);
1717

1818
function defaultCallback(method, err, res) {

0 commit comments

Comments
 (0)