diff --git a/CHANGELOG.md b/CHANGELOG.md index 542b66a..6d4d827 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [3.1.0] + +### Added + +* Added support for Expo 49. (#1811) + ## [3.0.0] ### Changed diff --git a/RNPhotoEditorSDK.podspec b/RNPhotoEditorSDK.podspec index 4ae7652..90942fc 100644 --- a/RNPhotoEditorSDK.podspec +++ b/RNPhotoEditorSDK.podspec @@ -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 diff --git a/ios/RNImglyKit.h b/ios/RNImglyKit.h index 884c112..77509dc 100644 --- a/ios/RNImglyKit.h +++ b/ios/RNImglyKit.h @@ -1,4 +1,4 @@ -@import Foundation; +#import @interface RNPESDKImglyKit : NSObject diff --git a/ios/RNImglyKitSubclass.h b/ios/RNImglyKitSubclass.h index e42f7e0..a85f07e 100644 --- a/ios/RNImglyKitSubclass.h +++ b/ios/RNImglyKitSubclass.h @@ -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 +#import @interface RN_IMGLY_ImglyKit () diff --git a/ios/RNPhotoEditorSDK.h b/ios/RNPhotoEditorSDK.h index 9b27858..00c38e4 100644 --- a/ios/RNPhotoEditorSDK.h +++ b/ios/RNPhotoEditorSDK.h @@ -1,7 +1,7 @@ #import #import "RNImglyKit.h" -@import PhotoEditorSDK; +#import /// The React Native module for PhotoEditor SDK @interface RNPhotoEditorSDK : RNPESDKImglyKit diff --git a/package.json b/package.json index 449b0a3..803dc2b 100644 --- a/package.json +++ b/package.json @@ -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", @@ -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" } }