@@ -269,6 +269,12 @@ extension SupportedPlatform {
269269 /// - Since: First available in PackageDescription 5.3
270270 @available ( _PackageDescription, introduced: 5.3 )
271271 public static let v11 : MacOSVersion = . init( string: " 11.0 " )
272+
273+ /// The value that represents macOS 12.0.
274+ ///
275+ /// - Since: First available in PackageDescription 5.5
276+ @available ( _PackageDescription, introduced: 5.5 )
277+ public static let v12 : MacOSVersion = . init( string: " 12.0 " )
272278 }
273279
274280 /// The supported tvOS version.
@@ -314,6 +320,12 @@ extension SupportedPlatform {
314320 /// - Since: First available in PackageDescription 5.3
315321 @available ( _PackageDescription, introduced: 5.3 )
316322 public static let v14 : TVOSVersion = . init( string: " 14.0 " )
323+
324+ /// The value that represents tvOS 15.0.
325+ ///
326+ /// - Since: First available in PackageDescription 5.5
327+ @available ( _PackageDescription, introduced: 5.5 )
328+ public static let v15 : TVOSVersion = . init( string: " 15.0 " )
317329 }
318330
319331 /// The supported Mac Catalyst version.
@@ -339,6 +351,12 @@ extension SupportedPlatform {
339351 /// - Since: First available in PackageDescription 5.5
340352 @available ( _PackageDescription, introduced: 5.5 )
341353 public static let v14 : MacCatalystVersion = . init( string: " 14.0 " )
354+
355+ /// The value that represents Mac Catalyst 15.0.
356+ ///
357+ /// - Since: First available in PackageDescription 5.5
358+ @available ( _PackageDescription, introduced: 5.5 )
359+ public static let v15 : MacCatalystVersion = . init( string: " 15.0 " )
342360 }
343361
344362 /// The supported iOS version.
@@ -389,6 +407,12 @@ extension SupportedPlatform {
389407 /// - Since: First available in PackageDescription 5.3
390408 @available ( _PackageDescription, introduced: 5.3 )
391409 public static let v14 : IOSVersion = . init( string: " 14.0 " )
410+
411+ /// The value that represents iOS 15.0.
412+ ///
413+ /// - Since: First available in PackageDescription 5.5
414+ @available ( _PackageDescription, introduced: 5.5 )
415+ public static let v15 : IOSVersion = . init( string: " 15.0 " )
392416 }
393417
394418 /// The supported watchOS version.
@@ -434,6 +458,12 @@ extension SupportedPlatform {
434458 /// - Since: First available in PackageDescription 5.3
435459 @available ( _PackageDescription, introduced: 5.3 )
436460 public static let v7 : WatchOSVersion = . init( string: " 7.0 " )
461+
462+ /// The value that represents watchOS 8.0.
463+ ///
464+ /// - Since: First available in PackageDescription 5.5
465+ @available ( _PackageDescription, introduced: 5.5 )
466+ public static let v8 : WatchOSVersion = . init( string: " 8.0 " )
437467 }
438468
439469 /// The supported DriverKit version.
@@ -455,6 +485,10 @@ extension SupportedPlatform {
455485 /// The value that represents DriverKit 20.0.
456486 @available ( _PackageDescription, introduced: 5.5 )
457487 public static let v20 : DriverKitVersion = . init( string: " 20.0 " )
488+
489+ /// The value that represents DriverKit 21.0.
490+ @available ( _PackageDescription, introduced: 5.5 )
491+ public static let v21 : DriverKitVersion = . init( string: " 21.0 " )
458492 }
459493}
460494
0 commit comments