We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78e53cb commit d809badCopy full SHA for d809bad
Package.swift
@@ -1,4 +1,4 @@
1
-// swift-tools-version:5.5
+// swift-tools-version:5.7
2
3
/*
4
This source file is part of the Swift.org open source project
@@ -18,7 +18,7 @@ let macOSPlatform: SupportedPlatform
18
if let deploymentTarget = ProcessInfo.processInfo.environment["SWIFTTSC_MACOS_DEPLOYMENT_TARGET"] {
19
macOSPlatform = .macOS(deploymentTarget)
20
} else {
21
- macOSPlatform = .macOS(.v10_13)
+ macOSPlatform = .macOS("12.0")
22
}
23
24
let CMakeFiles = ["CMakeLists.txt"]
@@ -27,6 +27,7 @@ let package = Package(
27
name: "swift-tools-support-core",
28
platforms: [
29
macOSPlatform,
30
+ .iOS("15.0")
31
],
32
products: [
33
.library(
0 commit comments