@@ -269,6 +269,12 @@ extension SupportedPlatform {
269
269
/// - Since: First available in PackageDescription 5.3
270
270
@available ( _PackageDescription, introduced: 5.3 )
271
271
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 " )
272
278
}
273
279
274
280
/// The supported tvOS version.
@@ -314,6 +320,12 @@ extension SupportedPlatform {
314
320
/// - Since: First available in PackageDescription 5.3
315
321
@available ( _PackageDescription, introduced: 5.3 )
316
322
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 " )
317
329
}
318
330
319
331
/// The supported Mac Catalyst version.
@@ -339,6 +351,12 @@ extension SupportedPlatform {
339
351
/// - Since: First available in PackageDescription 5.5
340
352
@available ( _PackageDescription, introduced: 5.5 )
341
353
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 " )
342
360
}
343
361
344
362
/// The supported iOS version.
@@ -389,6 +407,12 @@ extension SupportedPlatform {
389
407
/// - Since: First available in PackageDescription 5.3
390
408
@available ( _PackageDescription, introduced: 5.3 )
391
409
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 " )
392
416
}
393
417
394
418
/// The supported watchOS version.
@@ -434,6 +458,12 @@ extension SupportedPlatform {
434
458
/// - Since: First available in PackageDescription 5.3
435
459
@available ( _PackageDescription, introduced: 5.3 )
436
460
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 " )
437
467
}
438
468
439
469
/// The supported DriverKit version.
@@ -455,6 +485,10 @@ extension SupportedPlatform {
455
485
/// The value that represents DriverKit 20.0.
456
486
@available ( _PackageDescription, introduced: 5.5 )
457
487
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 " )
458
492
}
459
493
}
460
494
0 commit comments