2
2
//
3
3
// This source file is part of the Swift open source project
4
4
//
5
- // Copyright (c) 2018-2020 Apple Inc. and the Swift project authors
5
+ // Copyright (c) 2018-2022 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
@@ -316,6 +316,12 @@ extension SupportedPlatform {
316
316
/// - Since: First available in PackageDescription 5.5.
317
317
@available ( _PackageDescription, introduced: 5.5 )
318
318
public static let v12 : MacOSVersion = . init( string: " 12.0 " )
319
+
320
+ /// The value that represents macOS 13.0.
321
+ ///
322
+ /// - Since: First available in PackageDescription 5.7.
323
+ @available ( _PackageDescription, introduced: 5.7 )
324
+ public static let v13 : MacOSVersion = . init( string: " 13.0 " )
319
325
}
320
326
321
327
/// The supported tvOS version.
@@ -367,6 +373,12 @@ extension SupportedPlatform {
367
373
/// - Since: First available in PackageDescription 5.5.
368
374
@available ( _PackageDescription, introduced: 5.5 )
369
375
public static let v15 : TVOSVersion = . init( string: " 15.0 " )
376
+
377
+ /// The value that represents tvOS 16.0.
378
+ ///
379
+ /// - Since: First available in PackageDescription 5.7.
380
+ @available ( _PackageDescription, introduced: 5.7 )
381
+ public static let v16 : TVOSVersion = . init( string: " 16.0 " )
370
382
}
371
383
372
384
/// The supported Mac Catalyst version.
@@ -398,6 +410,12 @@ extension SupportedPlatform {
398
410
/// - Since: First available in PackageDescription 5.5.
399
411
@available ( _PackageDescription, introduced: 5.5 )
400
412
public static let v15 : MacCatalystVersion = . init( string: " 15.0 " )
413
+
414
+ /// The value that represents Mac Catalyst 16.0.
415
+ ///
416
+ /// - Since: First available in PackageDescription 5.7.
417
+ @available ( _PackageDescription, introduced: 5.7 )
418
+ public static let v16 : MacCatalystVersion = . init( string: " 16.0 " )
401
419
}
402
420
403
421
/// The supported iOS version.
@@ -454,6 +472,12 @@ extension SupportedPlatform {
454
472
/// - Since: First available in PackageDescription 5.5.
455
473
@available ( _PackageDescription, introduced: 5.5 )
456
474
public static let v15 : IOSVersion = . init( string: " 15.0 " )
475
+
476
+ /// The value that represents iOS 16.0.
477
+ ///
478
+ /// - Since: First available in PackageDescription 5.7.
479
+ @available ( _PackageDescription, introduced: 5.7 )
480
+ public static let v16 : IOSVersion = . init( string: " 16.0 " )
457
481
}
458
482
459
483
/// The supported watchOS version.
@@ -505,6 +529,12 @@ extension SupportedPlatform {
505
529
/// - Since: First available in PackageDescription 5.5.
506
530
@available ( _PackageDescription, introduced: 5.5 )
507
531
public static let v8 : WatchOSVersion = . init( string: " 8.0 " )
532
+
533
+ /// The value that represents watchOS 9.0.
534
+ ///
535
+ /// - Since: First available in PackageDescription 5.7.
536
+ @available ( _PackageDescription, introduced: 5.7 )
537
+ public static let v9 : WatchOSVersion = . init( string: " 9.0 " )
508
538
}
509
539
510
540
/// The supported DriverKit version.
@@ -530,6 +560,10 @@ extension SupportedPlatform {
530
560
/// The value that represents DriverKit 21.0.
531
561
@available ( _PackageDescription, introduced: 5.5 )
532
562
public static let v21 : DriverKitVersion = . init( string: " 21.0 " )
563
+
564
+ /// The value that represents DriverKit 22.0.
565
+ @available ( _PackageDescription, introduced: 5.7 )
566
+ public static let v22 : DriverKitVersion = . init( string: " 22.0 " )
533
567
}
534
568
}
535
569
0 commit comments