|
2 | 2 | //
|
3 | 3 | // This source file is part of the Swift open source project
|
4 | 4 | //
|
5 |
| -// Copyright (c) 2018-2022 Apple Inc. and the Swift project authors |
| 5 | +// Copyright (c) 2018-2023 Apple Inc. and the Swift project authors |
6 | 6 | // Licensed under Apache License v2.0 with Runtime Library Exception
|
7 | 7 | //
|
8 | 8 | // See http://swift.org/LICENSE.txt for license information
|
@@ -336,6 +336,12 @@ extension SupportedPlatform {
|
336 | 336 | /// - Since: First available in PackageDescription 5.7.
|
337 | 337 | @available(_PackageDescription, introduced: 5.7)
|
338 | 338 | public static let v13: MacOSVersion = .init(string: "13.0")
|
| 339 | + |
| 340 | + /// The value that represents macOS 14.0. |
| 341 | + /// |
| 342 | + /// - Since: First available in PackageDescription 5.9. |
| 343 | + @available(_PackageDescription, introduced: 5.9) |
| 344 | + public static let v14: MacOSVersion = .init(string: "14.0") |
339 | 345 | }
|
340 | 346 |
|
341 | 347 | /// The supported tvOS version.
|
@@ -397,6 +403,12 @@ extension SupportedPlatform {
|
397 | 403 | /// - Since: First available in PackageDescription 5.7.
|
398 | 404 | @available(_PackageDescription, introduced: 5.7)
|
399 | 405 | public static let v16: TVOSVersion = .init(string: "16.0")
|
| 406 | + |
| 407 | + /// The value that represents tvOS 17.0. |
| 408 | + /// |
| 409 | + /// - Since: First available in PackageDescription 5.9. |
| 410 | + @available(_PackageDescription, introduced: 5.9) |
| 411 | + public static let v17: TVOSVersion = .init(string: "17.0") |
400 | 412 | }
|
401 | 413 |
|
402 | 414 | /// The supported Mac Catalyst version.
|
@@ -434,6 +446,12 @@ extension SupportedPlatform {
|
434 | 446 | /// - Since: First available in PackageDescription 5.7.
|
435 | 447 | @available(_PackageDescription, introduced: 5.7)
|
436 | 448 | public static let v16: MacCatalystVersion = .init(string: "16.0")
|
| 449 | + |
| 450 | + /// The value that represents Mac Catalyst 17.0. |
| 451 | + /// |
| 452 | + /// - Since: First available in PackageDescription 5.9. |
| 453 | + @available(_PackageDescription, introduced: 5.9) |
| 454 | + public static let v17: MacCatalystVersion = .init(string: "17.0") |
437 | 455 | }
|
438 | 456 |
|
439 | 457 | /// The supported iOS version.
|
@@ -501,6 +519,12 @@ extension SupportedPlatform {
|
501 | 519 | /// - Since: First available in PackageDescription 5.7.
|
502 | 520 | @available(_PackageDescription, introduced: 5.7)
|
503 | 521 | public static let v16: IOSVersion = .init(string: "16.0")
|
| 522 | + |
| 523 | + /// The value that represents iOS 17.0. |
| 524 | + /// |
| 525 | + /// - Since: First available in PackageDescription 5.9. |
| 526 | + @available(_PackageDescription, introduced: 5.9) |
| 527 | + public static let v17: IOSVersion = .init(string: "17.0") |
504 | 528 | }
|
505 | 529 |
|
506 | 530 | /// The supported watchOS version.
|
@@ -562,6 +586,12 @@ extension SupportedPlatform {
|
562 | 586 | /// - Since: First available in PackageDescription 5.7.
|
563 | 587 | @available(_PackageDescription, introduced: 5.7)
|
564 | 588 | public static let v9: WatchOSVersion = .init(string: "9.0")
|
| 589 | + |
| 590 | + /// The value that represents watchOS 10.0. |
| 591 | + /// |
| 592 | + /// - Since: First available in PackageDescription 5.9. |
| 593 | + @available(_PackageDescription, introduced: 5.9) |
| 594 | + public static let v10: WatchOSVersion = .init(string: "10.0") |
565 | 595 | }
|
566 | 596 |
|
567 | 597 | /// The supported DriverKit version.
|
@@ -599,6 +629,12 @@ extension SupportedPlatform {
|
599 | 629 | /// - Since: First available in PackageDescription 5.7.
|
600 | 630 | @available(_PackageDescription, introduced: 5.7)
|
601 | 631 | public static let v22: DriverKitVersion = .init(string: "22.0")
|
| 632 | + |
| 633 | + /// The value that represents DriverKit 23.0. |
| 634 | + /// |
| 635 | + /// - Since: First available in PackageDescription 5.9. |
| 636 | + @available(_PackageDescription, introduced: 5.9) |
| 637 | + public static let v23: DriverKitVersion = .init(string: "23.0") |
602 | 638 | }
|
603 | 639 |
|
604 | 640 | /// A supported custom platform version.
|
|
0 commit comments