-
Notifications
You must be signed in to change notification settings - Fork 9
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
Bump deployment target to iOS 15 #81
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ import PackageDescription | |
let package = Package( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We likely want to change the swift tools version to 6.0 at the top of the file, and remove the stray |
||
name: "Stagehand", | ||
platforms: [ | ||
.iOS(.v12), | ||
.iOS(.v15), | ||
.macOS(.v11), | ||
], | ||
products: [ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we want the swift version of this repo to be 5 or 6? I know we want to support SPM v6, but what language mode do we want for this repo? Are we ready for 6? Or is there more work to do first? |
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ Pod::Spec.new do |s| | |
s.author = 'Square' | ||
s.source = { :git => 'https://github.com/CashApp/Stagehand.git', :tag => s.version.to_s } | ||
|
||
s.ios.deployment_target = '12.0' | ||
s.ios.deployment_target = '15.0' | ||
|
||
s.swift_version = '5.0.1' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should be 5.10 or 6.0 |
||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ Pod::Spec.new do |s| | |
s.author = 'Square' | ||
s.source = { :git => 'https://github.com/CashApp/Stagehand.git', :tag => s.version.to_s } | ||
|
||
s.ios.deployment_target = '12.0' | ||
s.ios.deployment_target = '15.0' | ||
|
||
s.swift_version = '5.0.1' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We likely want 5.10 or 6.0 here |
||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.6 not .0?