Skip to content

Commit 5fe380c

Browse files
authored
Raise the minimum deployment target to 10.11 (#3384)
rdar://76035286
1 parent cff753a commit 5fe380c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Sources/PackageModel/Platform.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public struct Platform: Equatable, Hashable, Codable {
2525
self.oldestSupportedVersion = oldestSupportedVersion
2626
}
2727

28-
public static let macOS: Platform = Platform(name: "macos", oldestSupportedVersion: "10.10")
28+
public static let macOS: Platform = Platform(name: "macos", oldestSupportedVersion: "10.11")
2929
public static let iOS: Platform = Platform(name: "ios", oldestSupportedVersion: "9.0")
3030
public static let tvOS: Platform = Platform(name: "tvos", oldestSupportedVersion: "9.0")
3131
public static let watchOS: Platform = Platform(name: "watchos", oldestSupportedVersion: "2.0")

Tests/BuildTests/BuildPlanTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import XCTest
2020

2121
let hostTriple = Resources.default.toolchain.triple
2222
#if os(macOS)
23-
let defaultTargetTriple: String = hostTriple.tripleString(forPlatformVersion: "10.10")
23+
let defaultTargetTriple: String = hostTriple.tripleString(forPlatformVersion: "10.11")
2424
#else
2525
let defaultTargetTriple: String = hostTriple.tripleString
2626
#endif

0 commit comments

Comments
 (0)