@@ -372,6 +372,12 @@ extension SupportedPlatform {
372372 /// - Since: First available in PackageDescription 5.9.
373373 @available ( _PackageDescription, introduced: 5.9 )
374374 public static let v14 : MacOSVersion = . init( string: " 14.0 " )
375+
376+ /// The value that represents macOS 15.0.
377+ ///
378+ /// - Since: First available in PackageDescription 6.0.
379+ @available ( _PackageDescription, introduced: 6.0 )
380+ public static let v15 : MacOSVersion = . init( string: " 15.0 " )
375381 }
376382
377383 /// The supported tvOS version.
@@ -439,6 +445,12 @@ extension SupportedPlatform {
439445 /// - Since: First available in PackageDescription 5.9.
440446 @available ( _PackageDescription, introduced: 5.9 )
441447 public static let v17 : TVOSVersion = . init( string: " 17.0 " )
448+
449+ /// The value that represents tvOS 18.0.
450+ ///
451+ /// - Since: First available in PackageDescription 6.0.
452+ @available ( _PackageDescription, introduced: 6.0 )
453+ public static let v18 : TVOSVersion = . init( string: " 18.0 " )
442454 }
443455
444456 /// The supported Mac Catalyst version.
@@ -482,6 +494,12 @@ extension SupportedPlatform {
482494 /// - Since: First available in PackageDescription 5.9.
483495 @available ( _PackageDescription, introduced: 5.9 )
484496 public static let v17 : MacCatalystVersion = . init( string: " 17.0 " )
497+
498+ /// The value that represents Mac Catalyst 18.0.
499+ ///
500+ /// - Since: First available in PackageDescription 6.0.
501+ @available ( _PackageDescription, introduced: 6.0 )
502+ public static let v18 : MacCatalystVersion = . init( string: " 18.0 " )
485503 }
486504
487505 /// The supported iOS version.
@@ -555,6 +573,12 @@ extension SupportedPlatform {
555573 /// - Since: First available in PackageDescription 5.9.
556574 @available ( _PackageDescription, introduced: 5.9 )
557575 public static let v17 : IOSVersion = . init( string: " 17.0 " )
576+
577+ /// The value that represents iOS 18.0.
578+ ///
579+ /// - Since: First available in PackageDescription 6.0.
580+ @available ( _PackageDescription, introduced: 6.0 )
581+ public static let v18 : IOSVersion = . init( string: " 18.0 " )
558582 }
559583
560584 /// The supported watchOS version.
@@ -622,6 +646,12 @@ extension SupportedPlatform {
622646 /// - Since: First available in PackageDescription 5.9.
623647 @available ( _PackageDescription, introduced: 5.9 )
624648 public static let v10 : WatchOSVersion = . init( string: " 10.0 " )
649+
650+ /// The value that represents watchOS 11.0.
651+ ///
652+ /// - Since: First available in PackageDescription 6.0.
653+ @available ( _PackageDescription, introduced: 6.0 )
654+ public static let v11 : WatchOSVersion = . init( string: " 11.0 " )
625655 }
626656
627657 /// The supported visionOS version.
@@ -641,6 +671,12 @@ extension SupportedPlatform {
641671 /// - Since: First available in PackageDescription 5.9.
642672 @available ( _PackageDescription, introduced: 5.9 )
643673 public static let v1 : VisionOSVersion = . init( string: " 1.0 " )
674+
675+ /// The value that represents visionOS 2.0.
676+ ///
677+ /// - Since: First available in PackageDescription 6.0.
678+ @available ( _PackageDescription, introduced: 6.0 )
679+ public static let v2 : VisionOSVersion = . init( string: " 2.0 " )
644680 }
645681
646682 /// The supported DriverKit version.
@@ -684,6 +720,12 @@ extension SupportedPlatform {
684720 /// - Since: First available in PackageDescription 5.9.
685721 @available ( _PackageDescription, introduced: 5.9 )
686722 public static let v23 : DriverKitVersion = . init( string: " 23.0 " )
723+
724+ /// The value that represents DriverKit 24.0.
725+ ///
726+ /// - Since: First available in PackageDescription 6.0.
727+ @available ( _PackageDescription, introduced: 6.0 )
728+ public static let v24 : DriverKitVersion = . init( string: " 24.0 " )
687729 }
688730
689731 /// A supported custom platform version.
0 commit comments