Skip to content

Commit

Permalink
Merge pull request #15 from cashapp/release-0.5.0
Browse files Browse the repository at this point in the history
Release 0.5.0
  • Loading branch information
mmroz authored Sep 14, 2023
2 parents 9d23c83 + 4705cd5 commit 9395555
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 7 deletions.
4 changes: 2 additions & 2 deletions 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.4.1'
s.version = '0.5.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 All @@ -9,7 +9,7 @@ Pod::Spec.new do |s|
s.module_name = 'PayKit'

s.swift_version = ['5.0']
s.ios.deployment_target = '11.0'
s.ios.deployment_target = '12.0'

s.source_files = 'Sources/PayKit/**/*.swift'

Expand Down
4 changes: 2 additions & 2 deletions CashAppPayKitUI.podspec
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Pod::Spec.new do |s|
s.name = 'CashAppPayKitUI'
s.version = "0.4.1"
s.version = "0.5.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'
s.author = 'Cash App'
s.source = { :git => 'https://github.com/cashapp/cash-app-pay-ios-sdk.git', :tag => "v#{s.version}" }
s.module_name = 'PayKitUI'

ios_deployment_target = '11.0'
ios_deployment_target = '12.0'

s.swift_version = ['5.0']
s.ios.deployment_target = ios_deployment_target
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ let package = Package(
name: "PayKit",
defaultLocalization: "en",
platforms: [
.iOS(.v11),
.macOS(.v12),
.iOS(.v12),
.macOS(.v10_13),
],
products: [
.library(
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.5.0 Release Notes

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

Pay Kit 0.5.0 includes the following new features and enhancements.

- **Dropped Support for iOS 11**

Increased the minimum supported iOS version to 12.

## PayKit 0.4.1 Release Notes

Pay Kit 0.4.1 supports iOS and requires Xcode 9 or later. The minimum supported Base SDK is 11.0.
Expand Down
2 changes: 1 addition & 1 deletion 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.4.1"
public static let version = "0.5.0"

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

Expand Down

0 comments on commit 9395555

Please sign in to comment.