Skip to content

Commit 055969b

Browse files
committed
std.Target: Update known max OS versions.
1 parent d856763 commit 055969b

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

lib/std/Target.zig

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -420,19 +420,19 @@ pub const Os = struct {
420420
.contiki => .{
421421
.semver = .{
422422
.min = .{ .major = 4, .minor = 0, .patch = 0 },
423-
.max = .{ .major = 4, .minor = 9, .patch = 0 },
423+
.max = .{ .major = 5, .minor = 0, .patch = 0 },
424424
},
425425
},
426426
.fuchsia => .{
427427
.semver = .{
428428
.min = .{ .major = 1, .minor = 1, .patch = 0 },
429-
.max = .{ .major = 20, .minor = 1, .patch = 0 },
429+
.max = .{ .major = 21, .minor = 1, .patch = 0 },
430430
},
431431
},
432432
.hermit => .{
433433
.semver = .{
434434
.min = .{ .major = 0, .minor = 4, .patch = 0 },
435-
.max = .{ .major = 0, .minor = 8, .patch = 0 },
435+
.max = .{ .major = 0, .minor = 10, .patch = 0 },
436436
},
437437
},
438438

@@ -467,7 +467,7 @@ pub const Os = struct {
467467

468468
break :blk default_min;
469469
},
470-
.max = .{ .major = 6, .minor = 11, .patch = 5 },
470+
.max = .{ .major = 6, .minor = 13, .patch = 4 },
471471
},
472472
.glibc = blk: {
473473
const default_min: std.SemanticVersion = .{ .major = 2, .minor = 28, .patch = 0 };
@@ -488,7 +488,7 @@ pub const Os = struct {
488488
.rtems => .{
489489
.semver = .{
490490
.min = .{ .major = 5, .minor = 1, .patch = 0 },
491-
.max = .{ .major = 5, .minor = 3, .patch = 0 },
491+
.max = .{ .major = 6, .minor = 1, .patch = 0 },
492492
},
493493
},
494494
.zos => .{
@@ -532,13 +532,13 @@ pub const Os = struct {
532532
.macos => .{
533533
.semver = .{
534534
.min = .{ .major = 13, .minor = 0, .patch = 0 },
535-
.max = .{ .major = 15, .minor = 3, .patch = 0 },
535+
.max = .{ .major = 15, .minor = 3, .patch = 1 },
536536
},
537537
},
538538
.ios => .{
539539
.semver = .{
540540
.min = .{ .major = 12, .minor = 0, .patch = 0 },
541-
.max = .{ .major = 18, .minor = 3, .patch = 0 },
541+
.max = .{ .major = 18, .minor = 3, .patch = 1 },
542542
},
543543
},
544544
.tvos => .{
@@ -550,13 +550,13 @@ pub const Os = struct {
550550
.visionos => .{
551551
.semver = .{
552552
.min = .{ .major = 1, .minor = 0, .patch = 0 },
553-
.max = .{ .major = 2, .minor = 3, .patch = 0 },
553+
.max = .{ .major = 2, .minor = 3, .patch = 1 },
554554
},
555555
},
556556
.watchos => .{
557557
.semver = .{
558558
.min = .{ .major = 6, .minor = 0, .patch = 0 },
559-
.max = .{ .major = 11, .minor = 3, .patch = 0 },
559+
.max = .{ .major = 11, .minor = 3, .patch = 1 },
560560
},
561561
},
562562

@@ -590,7 +590,7 @@ pub const Os = struct {
590590
.amdhsa => .{
591591
.semver = .{
592592
.min = .{ .major = 5, .minor = 0, .patch = 2 },
593-
.max = .{ .major = 6, .minor = 2, .patch = 2 },
593+
.max = .{ .major = 6, .minor = 3, .patch = 0 },
594594
},
595595
},
596596
.amdpal => .{
@@ -602,15 +602,15 @@ pub const Os = struct {
602602
.cuda => .{
603603
.semver = .{
604604
.min = .{ .major = 11, .minor = 0, .patch = 1 },
605-
.max = .{ .major = 12, .minor = 6, .patch = 1 },
605+
.max = .{ .major = 12, .minor = 8, .patch = 0 },
606606
},
607607
},
608608
.nvcl,
609609
.opencl,
610610
=> .{
611611
.semver = .{
612612
.min = .{ .major = 2, .minor = 2, .patch = 0 },
613-
.max = .{ .major = 3, .minor = 0, .patch = 0 },
613+
.max = .{ .major = 3, .minor = 0, .patch = 17 },
614614
},
615615
},
616616
.opengl => .{
@@ -622,7 +622,7 @@ pub const Os = struct {
622622
.vulkan => .{
623623
.semver = .{
624624
.min = .{ .major = 1, .minor = 2, .patch = 0 },
625-
.max = .{ .major = 1, .minor = 3, .patch = 0 },
625+
.max = .{ .major = 1, .minor = 4, .patch = 309 },
626626
},
627627
},
628628
};

0 commit comments

Comments
 (0)