clevertap-react-native 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  Change Log
2
2
  ==========
3
3
 
4
+ Version 1.1.1 *(2nd May 2023)*
5
+ -------------------------------------------
6
+ - Bug fixes and performance improvements.
7
+
4
8
  Version 1.1.0 *(29th May 2023)*
5
9
  -------------------------------------------
6
10
  **New Features**
File without changes
@@ -0,0 +1,2 @@
1
+ #Wed May 24 10:54:09 IST 2023
2
+ gradle.version=6.1.1
File without changes
@@ -21,8 +21,8 @@ android {
21
21
  defaultConfig {
22
22
  minSdkVersion 19
23
23
  targetSdkVersion 33
24
- versionCode 110
25
- versionName "1.1.0"
24
+ versionCode 111
25
+ versionName "1.1.1"
26
26
  }
27
27
  buildTypes {
28
28
  release {
@@ -203,7 +203,6 @@ public class CleverTapUtils {
203
203
  while (iterator.hasNext()) {
204
204
  Map.Entry pair = (Map.Entry) iterator.next();
205
205
  writableMap.merge(addValue((String) pair.getKey(), pair.getValue()));
206
- iterator.remove();
207
206
  }
208
207
 
209
208
  return writableMap;
package/index.js CHANGED
@@ -9,7 +9,7 @@ const EventEmitter = NativeModules.CleverTapReactEventEmitter ? new NativeEventE
9
9
  * @param {int} libVersion - The updated library version. If current version is 1.1.0 then pass as 10100
10
10
  */
11
11
  const libName = 'React-Native';
12
- const libVersion = 10100;
12
+ const libVersion = 10101;
13
13
  CleverTapReact.setLibrary(libName,libVersion);
14
14
 
15
15
  function defaultCallback(method, err, res) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clevertap-react-native",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "CleverTap React Native SDK.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",