Skip to content

Commit

Permalink
Merge pull request #505 from checkout/update/podspecs-4.3.1
Browse files Browse the repository at this point in the history
Update Podspec and sample project versions
  • Loading branch information
aashna-narula-cko authored Jan 22, 2024
2 parents cd9a612 + 4cd996a commit 7ee3593
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 7 deletions.
11 changes: 10 additions & 1 deletion .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,16 @@ All notable changes to this project will be documented in this file.

#### 4.x Releases

## [4.3.0](https://github.com/checkout/frames-ios/releases/tag/4.2.1)
## [4.3.1](https://github.com/checkout/frames-ios/releases/tag/4.3.1)

Released on 2024-01-19

Updates:

- Added capability for disabling Billing Address.


## [4.3.0](https://github.com/checkout/frames-ios/releases/tag/4.3.0)

Released on 2023-11-07

Expand Down
2 changes: 1 addition & 1 deletion Frames.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Frames"
s.version = "4.3.0"
s.version = "4.3.1"
s.summary = "Checkout API Client, Payment Form UI and Utilities in Swift"
s.description = <<-DESC
Checkout API Client and Payment Form Utilities in Swift.
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/Constants/Constants.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
enum Constants {

static let productName = "frames-ios-sdk"
static let version = "4.3.0"
static let version = "4.3.1"
static let userAgent = "checkout-sdk-frames-ios/\(version)"

enum Logging {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,11 @@ final class ExpiryDateEdgeCaseTests: XCTestCase {
let app = XCUIApplication()
app.launchFrames()

let currentMonth = String(Calendar.current.component(.month, from: Date()))
var currentMonth = String(Calendar.current.component(.month, from: Date()))
let currentYear = String(Calendar.current.component(.year, from: Date())).suffix(2)

let expiryTextField = app.otherElements[AccessibilityIdentifiers.PaymentForm.cardExpiry]
currentMonth = currentMonth.count == 1 ? "0" + currentMonth : currentMonth
app.enterText(currentMonth + currentYear, into: expiryTextField)
app.tapDoneButton()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1235,8 +1235,8 @@
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/checkout/frames-ios";
requirement = {
branch = "fix/update-readme";
kind = branch;
kind = exactVersion;
version = 4.3.1;
};
};
16C3F83E2A7927ED00690639 /* XCRemoteSwiftPackageReference "swift-snapshot-testing" */ = {
Expand Down
2 changes: 1 addition & 1 deletion iOS Example Frame/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ target 'iOS Example Frame' do
use_frameworks!

# Pods for iOS Example Custom
pod 'Frames', :git => 'https://github.com/checkout/frames-ios.git', :branch => 'fix/update-readme'
pod 'Frames', '4.3.1'

end

Expand Down

0 comments on commit 7ee3593

Please sign in to comment.