diff --git a/CHANGELOG.md b/CHANGELOG.md index e7952e1..15e2dfc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ The changelog for `Superwall`. Also see the [releases](https://github.com/superwall/react-native-superwall/releases) on GitHub. +## 1.4.6 + +### Enhancements + +- Upgrades iOS SDK to 3.12.3 [View iOS SDK release notes](https://github.com/superwall-me/Superwall-iOS/releases/tag/3.12.3). + ## 1.4.5 ### Fixes diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index c4a209a..200b13f 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -1119,12 +1119,12 @@ PODS: - React-Core - SocketRocket (0.6.1) - Superscript (0.1.16) - - superwall-react-native (1.4.4): + - superwall-react-native (1.4.6): - glog - RCT-Folly (= 2022.05.16.00) - React-Core - - SuperwallKit (= 3.12.1) - - SuperwallKit (3.12.1): + - SuperwallKit (= 3.12.3) + - SuperwallKit (3.12.3): - Superscript (= 0.1.16) - Yoga (1.14.0) @@ -1393,8 +1393,8 @@ SPEC CHECKSUMS: RNPurchases: 06957eb2f35bd7bb336d32fccf3534d45a3fda8a SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17 Superscript: 17e2597de5e1ddfa132e217b33d1eb8eddf13e0f - superwall-react-native: f7b9ec3abdbf5793daaca457d00cddb04b58e2ab - SuperwallKit: cbe59c2c745dfe966f810ab3fcadb92a20fde419 + superwall-react-native: 1cc0491d34c31763c0c889beccd3979c4f72d5f8 + SuperwallKit: 2f08804bcc41db40ce889ac7b11ffd0558563477 Yoga: 1b901a6d6eeba4e8a2e8f308f708691cdb5db312 PODFILE CHECKSUM: 76fced934770e056b70a3087a2bc377b3556bae1 diff --git a/expo-example/ios/Superapp.xcodeproj/project.pbxproj b/expo-example/ios/Superapp.xcodeproj/project.pbxproj index fe77ad4..27d7643 100644 --- a/expo-example/ios/Superapp.xcodeproj/project.pbxproj +++ b/expo-example/ios/Superapp.xcodeproj/project.pbxproj @@ -459,7 +459,10 @@ ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "$(inherited)"; OTHER_CPLUSPLUSFLAGS = "$(inherited)"; - OTHER_LDFLAGS = "$(inherited) "; + OTHER_LDFLAGS = ( + "$(inherited)", + " ", + ); REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; SDKROOT = iphoneos; USE_HERMES = true; @@ -516,7 +519,10 @@ MTL_ENABLE_DEBUG_INFO = NO; OTHER_CFLAGS = "$(inherited)"; OTHER_CPLUSPLUSFLAGS = "$(inherited)"; - OTHER_LDFLAGS = "$(inherited) "; + OTHER_LDFLAGS = ( + "$(inherited)", + " ", + ); REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; SDKROOT = iphoneos; USE_HERMES = true; diff --git a/package.json b/package.json index 763d544..8fd78da 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@superwall/react-native-superwall", - "version": "1.4.5", + "version": "1.4.6", "description": "The React Native package for Superwall", "main": "lib/commonjs/index", "module": "lib/module/index", diff --git a/superwall-react-native.podspec b/superwall-react-native.podspec index bc9c5b4..a2a65c0 100644 --- a/superwall-react-native.podspec +++ b/superwall-react-native.podspec @@ -15,7 +15,7 @@ Pod::Spec.new do |s| s.source = { :git => "https://github.com/superwall-me/Superwall-React-Native.git", :tag => "#{s.version}" } s.source_files = "ios/**/*.{h,m,mm,swift}" - s.dependency "SuperwallKit", '3.12.1' + s.dependency "SuperwallKit", '3.12.3' # Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0. # See https://github.com/facebook/react-native/blob/febf6b7f33fdb4904669f99d795eba4c0f95d7bf/scripts/cocoapods/new_architecture.rb#L79.