Skip to content

Commit

Permalink
Release 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mmroz committed Apr 15, 2024
1 parent 3b69997 commit 39c14a0
Show file tree
Hide file tree
Showing 18 changed files with 2,468 additions and 23 deletions.
2 changes: 1 addition & 1 deletion CashAppPayKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'CashAppPayKit'
s.version = '0.5.1'
s.version = '0.6.0'
s.summary = 'PayKit iOS SDK'
s.homepage = 'https://github.com/cashapp/cash-app-pay-ios-sdk'
s.license = 'Apache License, Version 2.0'
Expand Down
2 changes: 1 addition & 1 deletion CashAppPayKitUI.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'CashAppPayKitUI'
s.version = "0.5.1"
s.version = "0.6.0"
s.summary = 'UI components for the PayKit iOS SDK'
s.homepage = 'https://github.com/cashapp/cash-app-pay-ios-sdk'
s.license = 'Apache License, Version 2.0'
Expand Down
10 changes: 10 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## PayKit 0.6.0 Release Notes

Pay Kit 0.6.0 supports iOS and requires Xcode 11 or later. The minimum supported Base SDK is 12.0.

Pay Kit 0.6.0 includes the following new features and enhancements.

- **PayKit Supports Objective-C**

PayKit now provides Objective-C bindings.

## PayKit 0.5.1 Release Notes

Pay Kit 0.5.1 supports iOS and requires Xcode 11 or later. The minimum supported Base SDK is 12.0.
Expand Down
4 changes: 2 additions & 2 deletions Sources/PayKit/CashAppPay.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import UIKit

public class CashAppPay {

public static let version = "0.5.1"
public static let version = "0.6.0"

public static let RedirectNotification: Notification.Name = Notification.Name("CashAppPayRedirect")

Expand Down Expand Up @@ -122,7 +122,7 @@ public enum CashAppPayState: Equatable {
case creatingCustomerRequest(CreateCustomerRequestParams)
/// CustomerRequest is being updated. For information only.
case updatingCustomerRequest(request: CustomerRequest, params: UpdateCustomerRequestParams)
/// CustomerRequest has been created, waiting for customer to press "Pay with Cash App Pay" button0.
/// CustomerRequest has been created, waiting for customer to press "Pay with Cash App Pay" button.
case readyToAuthorize(CustomerRequest)
/// SDK is redirecting to Cash App for authorization. Show loading indicator if desired.
case redirecting(CustomerRequest)
Expand Down
Loading

0 comments on commit 39c14a0

Please sign in to comment.