Skip to content

Commit 44995d9

Browse files
Update samples and versions
1 parent df79dd5 commit 44995d9

File tree

8 files changed

+26
-13
lines changed

8 files changed

+26
-13
lines changed

.github/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file.
55

66
#### 4.x Releases
77

8+
9+
## [4.3.7](https://github.com/checkout/frames-ios/releases/tag/4.3.7)
10+
11+
Released on 2024-08-06
12+
13+
Updates:
14+
15+
- Removing the need to await for Risk SDK completion
16+
17+
## [4.3.6](https://github.com/checkout/frames-ios/releases/tag/4.3.6)
18+
19+
Released on 2024-05-30
20+
21+
Updates:
22+
23+
- Fixing a crash within the Risk SDK implementation.
24+
825
## [4.3.5](https://github.com/checkout/frames-ios/releases/tag/4.3.5)
926

1027
Released on 2024-05-01

Checkout.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'Checkout'
3-
s.version = '4.3.6'
3+
s.version = '4.3.7'
44
s.summary = 'Checkout SDK for iOS'
55

66
s.description = <<-DESC

Checkout/Samples/CocoapodsSample/Podfile

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,5 @@ target 'CheckoutCocoapodsSample' do
55
use_frameworks!
66

77
# Pods for CheckoutSDKCocoapodsSample
8-
# pod 'Checkout', '4.3.7'
9-
pod 'Checkout', :git => 'https://github.com/checkout/frames-ios.git', :branch => 'feature/risk-sdk-timeout-recovery'
10-
8+
pod 'Checkout', '4.3.7'
119
end

Checkout/Source/Validation/Constants.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public enum Constants {
2525
}
2626

2727
enum Product {
28-
static let version = "4.3.6"
28+
static let version = "4.3.7"
2929
static let name = "checkout-ios-sdk"
3030
static let userAgent = "checkout-sdk-ios/\(version)"
3131
}

Frames.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Frames"
3-
s.version = "4.3.6"
3+
s.version = "4.3.7"
44
s.summary = "Checkout API Client, Payment Form UI and Utilities in Swift"
55
s.description = <<-DESC
66
Checkout API Client and Payment Form Utilities in Swift.
@@ -21,6 +21,6 @@ Pod::Spec.new do |s|
2121

2222
s.dependency 'PhoneNumberKit'
2323
s.dependency 'CheckoutEventLoggerKit', '~> 1.2.4'
24-
s.dependency 'Checkout', '4.3.6'
24+
s.dependency 'Checkout', '4.3.7'
2525

2626
end

Source/Core/Constants/Constants.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
enum Constants {
99

1010
static let productName = "frames-ios-sdk"
11-
static let version = "4.3.6"
11+
static let version = "4.3.7"
1212
static let userAgent = "checkout-sdk-frames-ios/\(version)"
1313

1414
enum Logging {

iOS Example Frame SPM/iOS Example Frame SPM.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1238,8 +1238,8 @@
12381238
isa = XCRemoteSwiftPackageReference;
12391239
repositoryURL = "https://github.com/checkout/frames-ios";
12401240
requirement = {
1241-
branch = "feature/risk-sdk-timeout-recovery";
1242-
kind = branch;
1241+
kind = exactVersion;
1242+
version = 4.3.7;
12431243
};
12441244
};
12451245
16C3F83E2A7927ED00690639 /* XCRemoteSwiftPackageReference "swift-snapshot-testing" */ = {

iOS Example Frame/Podfile

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ target 'iOS Example Frame' do
66
use_frameworks!
77

88
# Pods for iOS Example Custom
9-
# pod 'Frames', '4.3.6'
10-
pod 'Frames', :git => 'https://github.com/checkout/frames-ios.git', :branch => 'feature/risk-sdk-timeout-recovery'
11-
9+
pod 'Frames', '4.3.7'
1210
end
1311

1412
post_install do |installer|

0 commit comments

Comments
 (0)