Skip to content

Commit

Permalink
Add version 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
leontobias committed Jan 6, 2025
1 parent 2fd4356 commit e953310
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## [3.3.0]

### Changed

* [react-native-imglysdk] Removed `@expo/config-plugins` dependency.

### Fixed

* Fixed potential crash from `unlockWithLicense` if new architecture is enabled.

## [3.2.0]

### Changed
Expand Down
6 changes: 1 addition & 5 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -203,11 +203,7 @@ class VESDK {
* resolved by the packager.
*/
static unlockWithLicense(license) {
if (Platform.OS == 'android') {
return RNVideoEditorSDK.unlockWithLicense(JSON.stringify(license));
} else {
return RNVideoEditorSDK.unlockWithLicense(license);
}
return RNVideoEditorSDK.unlockWithLicense(JSON.stringify(license));
}
}

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-native-videoeditorsdk",
"title": "React Native module for VideoEditor SDK",
"version": "3.2.0",
"version": "3.3.0",
"description": "A React Native module for VideoEditor SDK. Integrate the video editor into your own HTML5, iOS or Android app - in minutes!",
"main": "index.js",
"typings": "index.d.ts",
Expand Down Expand Up @@ -35,6 +35,6 @@
"react-native": ">=0.60.0 <1.0.x"
},
"dependencies": {
"react-native-imglysdk": "3.2.0"
"react-native-imglysdk": "3.3.0"
}
}

0 comments on commit e953310

Please sign in to comment.