Skip to content

Commit

Permalink
Add version 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
leontobias committed Nov 30, 2023
1 parent 14eb997 commit e158930
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [3.1.0]

### Added

* Added support for Expo 49. (#1811)

## [3.0.0]

### Changed
Expand Down
2 changes: 1 addition & 1 deletion RNVideoEditorSDK.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ Pod::Spec.new do |s|

s.dependency 'React'
s.dependency 'React-RCTImage'
s.dependency 'VideoEditorSDK', '~> 11.4'
s.dependency 'VideoEditorSDK', '~> 11.8'
end
2 changes: 1 addition & 1 deletion ios/RNImglyKit.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import Foundation;
#import <Foundation/Foundation.h>

@interface RNVESDKImglyKit : NSObject

Expand Down
3 changes: 2 additions & 1 deletion ios/RNImglyKitSubclass.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@
#define RN_IMGLY_dictionary_HELPER(prefix) RN_IMGLY_CONCATENATE(prefix, _dictionary)
#define RN_IMGLY_dictionary RN_IMGLY_dictionary_HELPER(RN_IMGLY)

@import ImglyKit;
#import <ImglyKit/ImglyKit.h>
#import <ImglyKit/ImglyKit-Swift.h>

@interface RN_IMGLY_ImglyKit ()

Expand Down
2 changes: 1 addition & 1 deletion ios/RNVideoEditorSDK.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#import <React/RCTBridgeModule.h>
#import "RNImglyKit.h"

@import VideoEditorSDK;
#import <ImglyKit/ImglyKit-Swift.h>

/// The React Native module for VideoEditor SDK
@interface RNVideoEditorSDK : RNVESDKImglyKit <RCTBridgeModule>
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.0.0",
"version": "3.1.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.0.0"
"react-native-imglysdk": "3.1.0"
}
}

0 comments on commit e158930

Please sign in to comment.