From ad5d7ca668910805fc0f0c070d28b55f578ced3b Mon Sep 17 00:00:00 2001 From: dtroupe Date: Thu, 18 Jan 2024 11:36:34 -0800 Subject: [PATCH] prepare 10.11.0 release --- CHANGELOG.md | 36 ++++++++++++++++++++++++++++ README.md | 3 ++- android/build.gradle | 2 +- android/src/main/AndroidManifest.xml | 2 +- ios/RNLinksdk.m | 2 +- package.json | 2 +- 6 files changed, 42 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 60c176af..bf33b43e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,41 @@ # RELEASES +## LinkKit V10.11.0 — 2024-01-18 + +### React Native + +#### Requirements + +| Name | Version | +|------|---------| +| React Native | >= [66.0](https://reactnative.dev/blog/2021/10/01/version-066) | + +#### Changes + +- Reverts Android SDK SDK to 3.14.2. To prevent issue [620](https://github.com/plaid/react-native-plaid-link-sdk/issues/620). + +### Android + +Android SDK [3.14.1](https://github.com/plaid/plaid-link-android/releases/tag/v3.14.1) + +#### Requirements + +| Name | Version | +|------|---------| +| Android Studio | 4.0+ | + +### iOS + +iOS SDK [4.7.1](https://github.com/plaid/plaid-link-ios/releases/tag/4.7.1) + +#### Requirements + +| Name | Version | +|------|---------| +| Xcode | >= 14.0 | +| iOS | >= 11.0 | + + ## LinkKit V10.10.0 — 2024-01-11 ### React Native diff --git a/README.md b/README.md index eb543490..c4802cd4 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.10.0 | >= 0.66.0 | [3.14.2+] | 21 | 33 | >=4.7.1 | 11.0 | Active, supports Xcode 14 | +| 10.11.0 | >= 0.66.0 | [3.14.2+] | 21 | 33 | >=4.7.1 | 11.0 | Active, supports Xcode 14 | +| ~10.10.0~ | >= 0.66.0 | [3.14.2+] | 21 | 33 | >=4.7.1 | 11.0 | Deprecated | | 10.9.1 | >= 0.66.0 | [3.14.1+] | 21 | 33 | >=4.7.0 | 11.0 | Active, supports Xcode 14 | | 10.9.0 | >= 0.66.0 | [3.14.1+] | 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 | diff --git a/android/build.gradle b/android/build.gradle index ade5a455..3b973843 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -70,7 +70,7 @@ repositories { dependencies { implementation "com.facebook.react:react-native:+" - implementation "com.plaid.link:sdk-core:3.14.2" + implementation "com.plaid.link:sdk-core:3.14.1" implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" implementation "com.jakewharton.rxrelay2:rxrelay:2.1.1" } diff --git a/android/src/main/AndroidManifest.xml b/android/src/main/AndroidManifest.xml index 5bb19c72..929ba07d 100644 --- a/android/src/main/AndroidManifest.xml +++ b/android/src/main/AndroidManifest.xml @@ -4,7 +4,7 @@ + android:value="10.11.0" /> diff --git a/ios/RNLinksdk.m b/ios/RNLinksdk.m index 422331a7..5ebc8d7a 100644 --- a/ios/RNLinksdk.m +++ b/ios/RNLinksdk.m @@ -117,7 +117,7 @@ @implementation RNLinksdk RCT_EXPORT_MODULE(); + (NSString*)sdkVersion { - return @"10.10.0"; // SDK_VERSION + return @"10.11.0"; // SDK_VERSION } + (NSString*)objCBridgeVersion { diff --git a/package.json b/package.json index 4879d04a..0357fbfd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-plaid-link-sdk", - "version": "10.10.0", + "version": "10.11.0", "description": "React Native Plaid Link SDK", "main": "dist/index.js", "types": "dist/index.d.ts",