diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index c6d6aba1..61bf5f9b 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file. #### 4.x Releases + +## [4.3.7](https://github.com/checkout/frames-ios/releases/tag/4.3.7) + +Released on 2024-08-06 + +Updates: + +- Removing the need to await for Risk SDK completion + +## [4.3.6](https://github.com/checkout/frames-ios/releases/tag/4.3.6) + +Released on 2024-05-30 + +Updates: + +- Fixing a crash within the Risk SDK implementation. + ## [4.3.5](https://github.com/checkout/frames-ios/releases/tag/4.3.5) Released on 2024-05-01 diff --git a/Checkout.podspec b/Checkout.podspec index d656ce28..34f70515 100644 --- a/Checkout.podspec +++ b/Checkout.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Checkout' - s.version = '4.3.6' + s.version = '4.3.7' s.summary = 'Checkout SDK for iOS' s.description = <<-DESC diff --git a/Checkout/Samples/CocoapodsSample/Podfile b/Checkout/Samples/CocoapodsSample/Podfile index 979c17ab..1aab611b 100644 --- a/Checkout/Samples/CocoapodsSample/Podfile +++ b/Checkout/Samples/CocoapodsSample/Podfile @@ -5,7 +5,5 @@ target 'CheckoutCocoapodsSample' do use_frameworks! # Pods for CheckoutSDKCocoapodsSample -# pod 'Checkout', '4.3.7' - pod 'Checkout', :git => 'https://github.com/checkout/frames-ios.git', :branch => 'feature/risk-sdk-timeout-recovery' - + pod 'Checkout', '4.3.7' end diff --git a/Checkout/Source/Validation/Constants.swift b/Checkout/Source/Validation/Constants.swift index 2e078af4..6ea6dbf5 100644 --- a/Checkout/Source/Validation/Constants.swift +++ b/Checkout/Source/Validation/Constants.swift @@ -25,7 +25,7 @@ public enum Constants { } enum Product { - static let version = "4.3.6" + static let version = "4.3.7" static let name = "checkout-ios-sdk" static let userAgent = "checkout-sdk-ios/\(version)" } diff --git a/Frames.podspec b/Frames.podspec index e231e81b..c50a2bc6 100644 --- a/Frames.podspec +++ b/Frames.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Frames" - s.version = "4.3.6" + s.version = "4.3.7" s.summary = "Checkout API Client, Payment Form UI and Utilities in Swift" s.description = <<-DESC Checkout API Client and Payment Form Utilities in Swift. @@ -21,6 +21,6 @@ Pod::Spec.new do |s| s.dependency 'PhoneNumberKit' s.dependency 'CheckoutEventLoggerKit', '~> 1.2.4' - s.dependency 'Checkout', '4.3.6' + s.dependency 'Checkout', '4.3.7' end diff --git a/Source/Core/Constants/Constants.swift b/Source/Core/Constants/Constants.swift index 316c8916..85e5a8f5 100644 --- a/Source/Core/Constants/Constants.swift +++ b/Source/Core/Constants/Constants.swift @@ -8,7 +8,7 @@ enum Constants { static let productName = "frames-ios-sdk" - static let version = "4.3.6" + static let version = "4.3.7" static let userAgent = "checkout-sdk-frames-ios/\(version)" enum Logging { diff --git a/iOS Example Frame SPM/iOS Example Frame SPM.xcodeproj/project.pbxproj b/iOS Example Frame SPM/iOS Example Frame SPM.xcodeproj/project.pbxproj index 49aed8d5..93a60ebe 100644 --- a/iOS Example Frame SPM/iOS Example Frame SPM.xcodeproj/project.pbxproj +++ b/iOS Example Frame SPM/iOS Example Frame SPM.xcodeproj/project.pbxproj @@ -1238,8 +1238,8 @@ isa = XCRemoteSwiftPackageReference; repositoryURL = "https://github.com/checkout/frames-ios"; requirement = { - branch = "feature/risk-sdk-timeout-recovery"; - kind = branch; + kind = exactVersion; + version = 4.3.7; }; }; 16C3F83E2A7927ED00690639 /* XCRemoteSwiftPackageReference "swift-snapshot-testing" */ = { diff --git a/iOS Example Frame/Podfile b/iOS Example Frame/Podfile index 92650ef9..7668c1d8 100644 --- a/iOS Example Frame/Podfile +++ b/iOS Example Frame/Podfile @@ -6,9 +6,7 @@ target 'iOS Example Frame' do use_frameworks! # Pods for iOS Example Custom -# pod 'Frames', '4.3.6' - pod 'Frames', :git => 'https://github.com/checkout/frames-ios.git', :branch => 'feature/risk-sdk-timeout-recovery' - + pod 'Frames', '4.3.7' end post_install do |installer|