Skip to content

Commit 3d78112

Browse files
Merge pull request #92 from xendit/release/3.10.1
Fix missing XenditCardHolderInformation in project hierachy
2 parents 893a344 + 8a90487 commit 3d78112

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Note that starting version 3.10.0, it requires minimum version of iOS 11. If you
1919
Add this to your Podfile.
2020

2121
```ruby
22-
pod 'Xendit', '~> 3.10.0'
22+
pod 'Xendit', '~> 3.10.1'
2323
```
2424

2525
**Important:** Import SDK in Objective-C project with CocoaPods integration, you can do as following

Sources/Xendit/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>3.10.0</string>
18+
<string>3.10.1</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSPrincipalClass</key>

Sources/Xendit/XDTApiClient.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class XDTApiClient {
3838
internal static let CLIENT_TYPE = "SDK";
3939
internal static let CLIENT_API_VERSION = "2.0.0";
4040
internal static let CLIENT_IDENTIFIER = "Xendit iOS SDK";
41-
internal static let CLIENT_SDK_VERSION = "3.10.0";
41+
internal static let CLIENT_SDK_VERSION = "3.10.1";
4242

4343
private static let WEBAPI_FLEX_BASE_URL = "https://sandbox.webapi.visa.com"
4444

Xendit.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'Xendit'
3-
s.version = '3.10.0'
3+
s.version = '3.10.1'
44
s.license = 'MIT'
55
s.homepage = 'https://www.xendit.co'
66
s.author = { 'Juan Gonzalez’' => '[email protected]' }

Xendit.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
/* End PBXAggregateTarget section */
2222

2323
/* Begin PBXBuildFile section */
24+
210C1C162CEEE13800D5950A /* XenditCardHolderInformation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 210C1C152CEEE13800D5950A /* XenditCardHolderInformation.swift */; };
2425
648184A52BF7556800DC5FBF /* Sentry in Frameworks */ = {isa = PBXBuildFile; productRef = 648184A42BF7556800DC5FBF /* Sentry */; };
2526
648184A82BF7558D00DC5FBF /* OHHTTPStubs in Frameworks */ = {isa = PBXBuildFile; productRef = 648184A72BF7558D00DC5FBF /* OHHTTPStubs */; };
2627
648184AA2BF7558D00DC5FBF /* OHHTTPStubsSwift in Frameworks */ = {isa = PBXBuildFile; productRef = 648184A92BF7558D00DC5FBF /* OHHTTPStubsSwift */; };
@@ -107,6 +108,7 @@
107108
/* End PBXContainerItemProxy section */
108109

109110
/* Begin PBXFileReference section */
111+
210C1C152CEEE13800D5950A /* XenditCardHolderInformation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = XenditCardHolderInformation.swift; sourceTree = "<group>"; };
110112
644E27A82BB2A82E007B0F1D /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
111113
OBJ_10 /* Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Extensions.swift; sourceTree = "<group>"; };
112114
OBJ_12 /* Log.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Log.swift; sourceTree = "<group>"; };
@@ -233,6 +235,7 @@
233235
OBJ_20 /* XenditAddress.swift */,
234236
OBJ_21 /* XenditAuthenticationRequest.swift */,
235237
OBJ_22 /* XenditBillingDetails.swift */,
238+
210C1C152CEEE13800D5950A /* XenditCardHolderInformation.swift */,
236239
OBJ_23 /* XenditCardData.swift */,
237240
OBJ_24 /* XenditCustomer.swift */,
238241
OBJ_25 /* XenditJWT.swift */,
@@ -525,6 +528,7 @@
525528
OBJ_747 /* XenditCustomer.swift in Sources */,
526529
OBJ_748 /* XenditJWT.swift in Sources */,
527530
OBJ_749 /* XenditJWTRequest.swift in Sources */,
531+
210C1C162CEEE13800D5950A /* XenditCardHolderInformation.swift in Sources */,
528532
OBJ_750 /* XenditRetokenizationRequest.swift in Sources */,
529533
OBJ_751 /* XenditStoreCVNRequest.swift in Sources */,
530534
OBJ_752 /* XenditTokenizationRequest.swift in Sources */,

0 commit comments

Comments
 (0)