@@ -382,6 +382,20 @@ extension SupportedPlatform {
382
382
/// - Since: First available in PackageDescription 6.0.
383
383
@available ( _PackageDescription, introduced: 6.0 )
384
384
public static let v15 : MacOSVersion = . init( string: " 15.0 " )
385
+
386
+ /// The value that represents macOS 16.0, which has been
387
+ /// replaced by the value for macOS 26.0.
388
+ ///
389
+ /// - Since: First available in PackageDescription 6.2.
390
+ @available ( * , unavailable, renamed: " v26 " )
391
+ @available ( _PackageDescription, introduced: 6.2 )
392
+ public static let v16 : MacOSVersion = . init( string: " 16.0 " )
393
+
394
+ /// The value that represents macOS 26.0.
395
+ ///
396
+ /// - Since: First available in PackageDescription 6.2.
397
+ @available ( _PackageDescription, introduced: 6.2 )
398
+ public static let v26 : MacOSVersion = . init( string: " 26.0 " )
385
399
}
386
400
387
401
/// The supported tvOS version.
@@ -455,6 +469,20 @@ extension SupportedPlatform {
455
469
/// - Since: First available in PackageDescription 6.0.
456
470
@available ( _PackageDescription, introduced: 6.0 )
457
471
public static let v18 : TVOSVersion = . init( string: " 18.0 " )
472
+
473
+ /// The value that represents tvOS 19.0, which has been
474
+ /// replaced by the value for tvOS 26.0.
475
+ ///
476
+ /// - Since: First available in PackageDescription 6.2.
477
+ @available ( * , unavailable, renamed: " v26 " )
478
+ @available ( _PackageDescription, introduced: 6.2 )
479
+ public static let v19 : TVOSVersion = . init( string: " 19.0 " )
480
+
481
+ /// The value that represents tvOS 26.0.
482
+ ///
483
+ /// - Since: First available in PackageDescription 6.2.
484
+ @available ( _PackageDescription, introduced: 6.2 )
485
+ public static let v26 : TVOSVersion = . init( string: " 26.0 " )
458
486
}
459
487
460
488
/// The supported Mac Catalyst version.
@@ -504,6 +532,20 @@ extension SupportedPlatform {
504
532
/// - Since: First available in PackageDescription 6.0.
505
533
@available ( _PackageDescription, introduced: 6.0 )
506
534
public static let v18 : MacCatalystVersion = . init( string: " 18.0 " )
535
+
536
+ /// The value that represents Mac Catalyst 19.0, which has been
537
+ /// replaced by the value for Mac Catalyst 26.0.
538
+ ///
539
+ /// - Since: First available in PackageDescription 6.2.
540
+ @available ( * , unavailable, renamed: " v26 " )
541
+ @available ( _PackageDescription, introduced: 6.2 )
542
+ public static let v19 : MacCatalystVersion = . init( string: " 19.0 " )
543
+
544
+ /// The value that represents Mac Catalyst 26.0.
545
+ ///
546
+ /// - Since: First available in PackageDescription 6.2.
547
+ @available ( _PackageDescription, introduced: 6.2 )
548
+ public static let v26 : MacCatalystVersion = . init( string: " 26.0 " )
507
549
}
508
550
509
551
/// The supported iOS version.
@@ -583,6 +625,20 @@ extension SupportedPlatform {
583
625
/// - Since: First available in PackageDescription 6.0.
584
626
@available ( _PackageDescription, introduced: 6.0 )
585
627
public static let v18 : IOSVersion = . init( string: " 18.0 " )
628
+
629
+ /// The value that represents iOS 19.0, which has been
630
+ /// replaced by the value for iOS 26.0.
631
+ ///
632
+ /// - Since: First available in PackageDescription 6.2.
633
+ @available ( * , unavailable, renamed: " v26 " )
634
+ @available ( _PackageDescription, introduced: 6.2 )
635
+ public static let v19 : IOSVersion = . init( string: " 19.0 " )
636
+
637
+ /// The value that represents iOS 26.0.
638
+ ///
639
+ /// - Since: First available in PackageDescription 6.2.
640
+ @available ( _PackageDescription, introduced: 6.2 )
641
+ public static let v26 : IOSVersion = . init( string: " 26.0 " )
586
642
}
587
643
588
644
/// The supported watchOS version.
@@ -656,6 +712,20 @@ extension SupportedPlatform {
656
712
/// - Since: First available in PackageDescription 6.0.
657
713
@available ( _PackageDescription, introduced: 6.0 )
658
714
public static let v11 : WatchOSVersion = . init( string: " 11.0 " )
715
+
716
+ /// The value that represents watchOS 12.0, which has been
717
+ /// replaced by the value for watchOS 26.0.
718
+ ///
719
+ /// - Since: First available in PackageDescription 6.2.
720
+ @available ( * , unavailable, renamed: " v26 " )
721
+ @available ( _PackageDescription, introduced: 6.2 )
722
+ public static let v12 : WatchOSVersion = . init( string: " 12.0 " )
723
+
724
+ /// The value that represents watchOS 26.0.
725
+ ///
726
+ /// - Since: First available in PackageDescription 6.2.
727
+ @available ( _PackageDescription, introduced: 6.2 )
728
+ public static let v26 : WatchOSVersion = . init( string: " 26.0 " )
659
729
}
660
730
661
731
/// The supported visionOS version.
@@ -681,6 +751,20 @@ extension SupportedPlatform {
681
751
/// - Since: First available in PackageDescription 6.0.
682
752
@available ( _PackageDescription, introduced: 6.0 )
683
753
public static let v2 : VisionOSVersion = . init( string: " 2.0 " )
754
+
755
+ /// The value that represents visionOS 3.0, which has been
756
+ /// replaced by the value for visionOS 26.0.
757
+ ///
758
+ /// - Since: First available in PackageDescription 6.2.
759
+ @available ( * , unavailable, renamed: " v26 " )
760
+ @available ( _PackageDescription, introduced: 6.2 )
761
+ public static let v3 : VisionOSVersion = . init( string: " 3.0 " )
762
+
763
+ /// The value that represents visionOS 26.0.
764
+ ///
765
+ /// - Since: First available in PackageDescription 6.2.
766
+ @available ( _PackageDescription, introduced: 6.2 )
767
+ public static let v26 : VisionOSVersion = . init( string: " 26.0 " )
684
768
}
685
769
686
770
/// The supported DriverKit version.
@@ -730,6 +814,12 @@ extension SupportedPlatform {
730
814
/// - Since: First available in PackageDescription 6.0.
731
815
@available ( _PackageDescription, introduced: 6.0 )
732
816
public static let v24 : DriverKitVersion = . init( string: " 24.0 " )
817
+
818
+ /// The value that represents DriverKit 25.0.
819
+ ///
820
+ /// - Since: First available in PackageDescription 6.2.
821
+ @available ( _PackageDescription, introduced: 6.2 )
822
+ public static let v25 : DriverKitVersion = . init( string: " 25.0 " )
733
823
}
734
824
735
825
/// A supported custom platform version.
0 commit comments