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 eb4631f commit cf14e82
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 RNPhotoEditorSDK.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 'PhotoEditorSDK', '~> 11.4'
s.dependency 'PhotoEditorSDK', '~> 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 RNPESDKImglyKit : 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/RNPhotoEditorSDK.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#import <React/RCTBridgeModule.h>
#import "RNImglyKit.h"

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

/// The React Native module for PhotoEditor SDK
@interface RNPhotoEditorSDK : RNPESDKImglyKit <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-photoeditorsdk",
"title": "React Native module for PhotoEditor SDK",
"version": "3.0.0",
"version": "3.1.0",
"description": "A React Native module for PhotoEditor SDK. Integrate the photo editor into your own HTML5, iOS or Android app - in minutes!",
"main": "index.js",
"typings": "index.d.ts",
Expand Down Expand Up @@ -38,6 +38,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 cf14e82

Please sign in to comment.