authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-02-24 03:34:34+01:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-02-25 20:30:43+01:00
log055969b1015ec574b985a29f0b3af8a77fabff20
tree2207d2f6e4fb3200f66c0f2cd18f3f2b0a30890e
parentd856763acab62dd88c561b9ca8fd4a3c76783b7a

std.Target: Update known max OS versions.


1 files changed, 13 insertions(+), 13 deletions(-)

lib/std/Target.zig+13-13
......@@ -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,7 +602,7 @@ 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,
......@@ -610,7 +610,7 @@ pub const Os = struct {
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 };