Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.6.0 #24

Merged
merged 1 commit into from
Apr 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading