Skip to content

Commit

Permalink
Merge pull request #137 from plaid/release/6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dtroupe-plaid authored and GitHub Enterprise committed Nov 11, 2024
2 parents f2c2723 + d9f34ca commit 7afbe91
Show file tree
Hide file tree
Showing 49 changed files with 17,604 additions and 16,537 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# RELEASES

## LinkKit 6.0.0 - 2024-11-11
### Requirements

| Name | Version |
|------|---------|
| Xcode | >= 16.1.0 |
| iOS | >= 14.0 |

### Changes

- Add support for FinanceKit and Apple card.

## LinkKit 5.6.1 — 2024-09-12
### Requirements

Expand Down
14 changes: 7 additions & 7 deletions LinkKit.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,17 @@
<array>
<dict>
<key>BinaryPath</key>
<string>LinkKit.framework/Versions/A/LinkKit</string>
<string>LinkKit.framework/LinkKit</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-maccatalyst</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>LinkKit.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>maccatalyst</string>
</dict>
<dict>
<key>BinaryPath</key>
Expand All @@ -40,17 +37,20 @@
</dict>
<dict>
<key>BinaryPath</key>
<string>LinkKit.framework/LinkKit</string>
<string>LinkKit.framework/Versions/A/LinkKit</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-maccatalyst</string>
<key>LibraryPath</key>
<string>LinkKit.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>maccatalyst</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#if 0
#elif defined(__arm64__) && __arm64__
// Generated by Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)
// Generated by Apple Swift version 6.0.2 effective-5.10 (swiftlang-6.0.2.1.2 clang-1600.0.26.4)
#ifndef LINKKIT_SWIFT_H
#define LINKKIT_SWIFT_H
#pragma clang diagnostic push
Expand Down Expand Up @@ -42,6 +42,8 @@
#include <string.h>
#endif
#if defined(__cplusplus)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module"
#if defined(__arm64e__) && __has_include(<ptrauth.h>)
# include <ptrauth.h>
#else
Expand All @@ -55,6 +57,7 @@
# endif
#pragma clang diagnostic pop
#endif
#pragma clang diagnostic pop
#endif

#if !defined(SWIFT_TYPEDEFS)
Expand Down Expand Up @@ -291,6 +294,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#pragma clang diagnostic ignored "-Wunknown-pragmas"
#pragma clang diagnostic ignored "-Wnullability"
#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
#pragma clang diagnostic ignored "-Wunsafe-buffer-usage"

#if __has_attribute(external_source_symbol)
# pragma push_macro("any")
Expand Down Expand Up @@ -345,6 +349,7 @@ SWIFT_CLASS("_TtC7LinkKit8PLKPlaid")
/// The version of the Plaid Link iOS SDK.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _Nonnull sdkVersion;)
+ (NSString * _Nonnull)sdkVersion SWIFT_WARN_UNUSED_RESULT;
+ (void)syncFinanceKitWithToken:(NSString * _Nonnull)token requestAuthorizationIfNeeded:(BOOL)requestAuthorizationIfNeeded onSuccess:(void (^ _Nonnull)(void))onSuccess onError:(void (^ _Nonnull)(NSError * _Nonnull))onError SWIFT_AVAILABILITY(ios,introduced=17.4);
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@end

Expand Down
Binary file modified LinkKit.xcframework/ios-arm64/LinkKit.framework/Info.plist
Binary file not shown.
Binary file modified LinkKit.xcframework/ios-arm64/LinkKit.framework/LinkKit
Binary file not shown.
Loading

0 comments on commit 7afbe91

Please sign in to comment.