From 391850a0d83ea412c848f7ffb7396fc316e0c5e8 Mon Sep 17 00:00:00 2001 From: dtroupe Date: Tue, 7 Nov 2023 11:18:13 -0800 Subject: [PATCH 1/2] prep 10.8.0 --- CHANGELOG.md | 40 +++++++++++++++++++++++++++- README.md | 3 ++- android/src/main/AndroidManifest.xml | 2 +- ios/RNLinksdk.m | 2 +- package.json | 2 +- react-native-plaid-link-sdk.podspec | 2 +- 6 files changed, 45 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0874fbbe..e8bfca44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # RELEASES -## LinkKit V10.7.0 — 2023-11-07 +## LinkKit V10.8.0 — 2023-11-07 ### React Native @@ -37,6 +37,44 @@ iOS SDK [4.7.0](https://github.com/plaid/plaid-link-ios/releases/tag/4.7.0) | Xcode | >= 14.0 | | iOS | >= 11.0 | +## LinkKit V10.7.0 — 2023-11-07 + +### React Native + +#### Requirements + +| Name | Version | +|------|---------| +| React Native | >= [66.0](https://reactnative.dev/blog/2021/10/01/version-066) | + +#### Changes + +- Resolve Issue [589](https://github.com/plaid/react-native-plaid-link-sdk/issues/589) + + +### Android + +Android SDK [3.14.0](https://github.com/plaid/plaid-link-android/releases/tag/v3.14.0) + +#### Requirements + +| Name | Version | +|------|---------| +| Android Studio | 4.0+ | + + +### iOS + +iOS SDK [4.6.4](https://github.com/plaid/plaid-link-ios/releases/tag/4.6.4) + +#### Requirements + +| Name | Version | +|------|---------| +| Xcode | >= 14.0 | +| iOS | >= 11.0 | + + ## LinkKit V10.6.4 — 2023-10-12 ### React Native diff --git a/README.md b/README.md index 0b496e7f..9e79ce94 100644 --- a/README.md +++ b/README.md @@ -145,7 +145,8 @@ You can also use the `usePlaidEmitter` hook in react functional components: | Plaid SDK Version | Min React Native Version | Android SDK | Android Min Version | Android Compile Version| iOS SDK | iOS Min Version | Status | |-------------------|--------------------------|-------------|---------------------|------------------------|---------|-----------------|-------------------------------| -| 10.7.0 | >= 0.66.0 | [3.14.0+] | 21 | 33 | >=4.7.0 | 11.0 | Active, supports Xcode 14 | +| 10.8.0 | >= 0.66.0 | [3.14.0+] | 21 | 33 | >=4.7.0 | 11.0 | Active, supports Xcode 14 | +| 10.7.0 | >= 0.66.0 | [3.14.0+] | 21 | 33 | >=4.6.4 | 11.0 | Active, supports Xcode 14 | | 10.6.4 | >= 0.66.0 | [3.14.0+] | 21 | 33 | >=4.6.4 | 11.0 | Active, supports Xcode 14 | | 10.6.3 | >= 0.66.0 | [3.14.0+] | 21 | 33 | >=4.6.4 | 11.0 | Active, supports Xcode 14 | | 10.6.2 | >= 0.66.0 | [3.14.0+] | 21 | 33 | >=4.6.4 | 11.0 | Deprecated, supports Xcode 14 | diff --git a/android/src/main/AndroidManifest.xml b/android/src/main/AndroidManifest.xml index c0819db6..867f291f 100644 --- a/android/src/main/AndroidManifest.xml +++ b/android/src/main/AndroidManifest.xml @@ -4,7 +4,7 @@ + android:value="10.8.0" /> diff --git a/ios/RNLinksdk.m b/ios/RNLinksdk.m index 193c676c..f3a2cab0 100644 --- a/ios/RNLinksdk.m +++ b/ios/RNLinksdk.m @@ -117,7 +117,7 @@ @implementation RNLinksdk RCT_EXPORT_MODULE(); + (NSString*)sdkVersion { - return @"10.7.0"; // SDK_VERSION + return @"10.8.0"; // SDK_VERSION } + (NSString*)objCBridgeVersion { diff --git a/package.json b/package.json index 1faf1a25..2a184737 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-plaid-link-sdk", - "version": "10.7.0", + "version": "10.8.0", "description": "React Native Plaid Link SDK", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/react-native-plaid-link-sdk.podspec b/react-native-plaid-link-sdk.podspec index 9b9d6ed8..cb09c6db 100644 --- a/react-native-plaid-link-sdk.podspec +++ b/react-native-plaid-link-sdk.podspec @@ -16,5 +16,5 @@ Pod::Spec.new do |s| s.source_files = "ios/*.{h,m,swift}" s.dependency 'React-Core' - s.dependency 'Plaid', '~> 4.6.4' + s.dependency 'Plaid', '~> 4.7.0' end From 07b3f05f25f194e06a245d69a805788db44012f6 Mon Sep 17 00:00:00 2001 From: dtroupe Date: Tue, 7 Nov 2023 11:21:21 -0800 Subject: [PATCH 2/2] update changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e8bfca44..4a0fa1fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,7 @@ #### Changes -- Resolve Issue [589](https://github.com/plaid/react-native-plaid-link-sdk/issues/589) +- Update iOS SDK to [4.7.0](https://github.com/plaid/plaid-link-ios/releases/tag/4.7.0) ### Android