Skip to content

Commit

Permalink
Merge pull request #332 from CleverTap/develop
Browse files Browse the repository at this point in the history
Release v1.1.1
  • Loading branch information
shivamsharma2710 authored Jun 2, 2023
2 parents 101c5e4 + 2383e0e commit b546a3e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Change Log
==========

Version 1.1.1 *(2nd May 2023)*
-------------------------------------------
- Bug fixes and performance improvements.

Version 1.1.0 *(29th May 2023)*
-------------------------------------------
**New Features**
Expand Down
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ android {
defaultConfig {
minSdkVersion 19
targetSdkVersion 33
versionCode 110
versionName "1.1.0"
versionCode 111
versionName "1.1.1"
}
buildTypes {
release {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,6 @@ public static WritableMap toWritableMap(Map<String, Object> map) {
while (iterator.hasNext()) {
Map.Entry pair = (Map.Entry) iterator.next();
writableMap.merge(addValue((String) pair.getKey(), pair.getValue()));
iterator.remove();
}

return writableMap;
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const EventEmitter = NativeModules.CleverTapReactEventEmitter ? new NativeEventE
* @param {int} libVersion - The updated library version. If current version is 1.1.0 then pass as 10100
*/
const libName = 'React-Native';
const libVersion = 10100;
const libVersion = 10101;
CleverTapReact.setLibrary(libName,libVersion);

function defaultCallback(method, err, res) {
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-react-native",
"version": "1.1.0",
"version": "1.1.1",
"description": "CleverTap React Native SDK.",
"main": "index.js",
"types": "index.d.ts",
Expand Down

0 comments on commit b546a3e

Please sign in to comment.