Skip to content

Commit

Permalink
feat(release): 4.22.0 (#378)
Browse files Browse the repository at this point in the history
* Update version
* fix(ad-hoc): 3DS duplicate clean (#379)
  • Loading branch information
processout-ci authored Nov 6, 2024
1 parent abb8616 commit d8e4856
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion ProcessOut.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'ProcessOut'
s.version = '4.21.1'
s.version = '4.22.0'
s.swift_versions = ['5.9']
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.homepage = 'https://github.com/processout/processout-ios'
Expand Down
2 changes: 1 addition & 1 deletion ProcessOutCheckout3DS.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'ProcessOutCheckout3DS'
s.version = '4.21.1'
s.version = '4.22.0'
s.swift_versions = ['5.10']
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.homepage = 'https://github.com/processout/processout-ios'
Expand Down
2 changes: 1 addition & 1 deletion ProcessOutCoreUI.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'ProcessOutCoreUI'
s.version = '4.21.1'
s.version = '4.22.0'
s.swift_versions = ['5.10']
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.homepage = 'https://github.com/processout/processout-ios'
Expand Down
2 changes: 1 addition & 1 deletion ProcessOutUI.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'ProcessOutUI'
s.version = '4.21.1'
s.version = '4.22.0'
s.swift_versions = ['5.10']
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.homepage = 'https://github.com/processout/processout-ios'
Expand Down
4 changes: 2 additions & 2 deletions Sources/ProcessOut/Sources/Generated/ProcessOut+Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

extension ProcessOut {

/// The current version of this library, value is "4.21.1".
/// The current version of this library, value is "4.22.0".
public static var version: String {
"4.21.1"
"4.22.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ final class DefaultCustomerTokensService: POCustomerTokensService {
logger.warn("Did fail to assign customer token: \(error)", attributes: attributes)
throw error
}
return try await assignCustomerToken(request: newRequest, threeDSService: threeDSService)
return try await _assignCustomerToken(request: newRequest, threeDSService: threeDSService)
}
if let token = response.token {
return token
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ final class DefaultInvoicesService: POInvoicesService {
logger.warn("Did fail to authorize invoice: \(error)", attributes: [.invoiceId: request.invoiceId])
throw error
}
try await authorizeInvoice(request: newRequest, threeDSService: threeDSService)
try await _authorizeInvoice(request: newRequest, threeDSService: threeDSService)
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ public final class POCheckout3DSService: PO3DS2Service {

public func clean() async {
service?.cleanUp()
service = nil
}

// MARK: - Private Properties
Expand Down
2 changes: 1 addition & 1 deletion Version.resolved
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.21.1
4.22.0

0 comments on commit d8e4856

Please sign in to comment.