-
Notifications
You must be signed in to change notification settings - Fork 218
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adopt Swift 6 and Xcode 16 * Project updates * Lower macOS deployment to macOS 10.13 – match README * Remove @available checks that no longer apply * Remove renamed method hints * Remove v2 (objc) compatibility tests * Update README * Add migration method
- Loading branch information
Showing
51 changed files
with
885 additions
and
2,914 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,29 @@ | ||
// swift-tools-version:5.4 | ||
// swift-tools-version:6.0 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "Valet", | ||
platforms: [ | ||
.iOS(.v9), | ||
.tvOS(.v9), | ||
.watchOS(.v2), | ||
.macOS(.v10_11), | ||
.iOS(.v12), | ||
.tvOS(.v12), | ||
.watchOS(.v4), | ||
.macOS(.v10_13), | ||
], | ||
products: [ | ||
.library( | ||
name: "Valet", | ||
targets: ["Valet"]), | ||
targets: ["Valet"] | ||
), | ||
], | ||
targets: [ | ||
.target( | ||
name: "Valet", | ||
dependencies: []), | ||
], | ||
swiftLanguageVersions: [.v5] | ||
dependencies: [], | ||
swiftSettings: [ | ||
.swiftLanguageMode(.v6), | ||
] | ||
), | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.