Skip to content

Commit

Permalink
Merge pull request #531 from plaid/release/10.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dtroupe-plaid authored May 3, 2023
2 parents 8eb8490 + ac9b3b9 commit 46278ee
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ When upgrading from a previous major version of this library, see the following
# Version compatibility
| React Native SDK | Android SDK | iOS SDK | Status |
|---|---|---|---|
| 10.2.0 | [3.12.0+] | >=4.3.0 | Active, supports Xcode 14 |
| 10.1.0 | [3.11.0+] | >=4.2.0 | Active, supports Xcode 14 |
| 10.0.0 | [3.10.1+] | >=4.1.0 | Deprecated, supports Xcode 14 |
| 9.x.x | [3.10.1+] | >=4.1.0 | Deprecated, supports Xcode 14 |
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ repositories {

dependencies {
implementation "com.facebook.react:react-native:+"
implementation "com.plaid.link:sdk-core:3.11.0"
implementation "com.plaid.link:sdk-core:3.12.0"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation "com.jakewharton.rxrelay2:rxrelay:2.1.1"
}
2 changes: 1 addition & 1 deletion android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<application>
<meta-data
android:name="com.plaid.link.react_native"
android:value="10.1.0" />
android:value="10.2.0" />
</application>

</manifest>
2 changes: 1 addition & 1 deletion ios/RNLinksdk.m
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ @implementation RNLinksdk
RCT_EXPORT_MODULE();

+ (NSString*)sdkVersion {
return @"10.1.0"; // SDK_VERSION
return @"10.2.0"; // SDK_VERSION
}

+ (NSString*)objCBridgeVersion {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-plaid-link-sdk",
"version": "10.1.0",
"version": "10.2.0",
"description": "React Native Plaid Link SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion react-native-plaid-link-sdk.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ Pod::Spec.new do |s|
s.source_files = "ios/*.{h,m}"

s.dependency 'React-Core'
s.dependency 'Plaid', '~> 4.2.0'
s.dependency 'Plaid', '~> 4.3.0'
end

0 comments on commit 46278ee

Please sign in to comment.