zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 055969b1015ec574b985a29f0b3af8a77fabff20 (tree)
parent d856763acab62dd88c561b9ca8fd4a3c76783b7a
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Mon, 24 Feb 2025 03:34:34 +0100

std.Target: Update known max OS versions.

Diffstat:
Mlib/std/Target.zig | 26+++++++++++++-------------
1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/lib/std/Target.zig b/lib/std/Target.zig @@ -420,19 +420,19 @@ pub const Os = struct { .contiki => .{ .semver = .{ .min = .{ .major = 4, .minor = 0, .patch = 0 }, - .max = .{ .major = 4, .minor = 9, .patch = 0 }, + .max = .{ .major = 5, .minor = 0, .patch = 0 }, }, }, .fuchsia => .{ .semver = .{ .min = .{ .major = 1, .minor = 1, .patch = 0 }, - .max = .{ .major = 20, .minor = 1, .patch = 0 }, + .max = .{ .major = 21, .minor = 1, .patch = 0 }, }, }, .hermit => .{ .semver = .{ .min = .{ .major = 0, .minor = 4, .patch = 0 }, - .max = .{ .major = 0, .minor = 8, .patch = 0 }, + .max = .{ .major = 0, .minor = 10, .patch = 0 }, }, }, @@ -467,7 +467,7 @@ pub const Os = struct { break :blk default_min; }, - .max = .{ .major = 6, .minor = 11, .patch = 5 }, + .max = .{ .major = 6, .minor = 13, .patch = 4 }, }, .glibc = blk: { const default_min: std.SemanticVersion = .{ .major = 2, .minor = 28, .patch = 0 }; @@ -488,7 +488,7 @@ pub const Os = struct { .rtems => .{ .semver = .{ .min = .{ .major = 5, .minor = 1, .patch = 0 }, - .max = .{ .major = 5, .minor = 3, .patch = 0 }, + .max = .{ .major = 6, .minor = 1, .patch = 0 }, }, }, .zos => .{ @@ -532,13 +532,13 @@ pub const Os = struct { .macos => .{ .semver = .{ .min = .{ .major = 13, .minor = 0, .patch = 0 }, - .max = .{ .major = 15, .minor = 3, .patch = 0 }, + .max = .{ .major = 15, .minor = 3, .patch = 1 }, }, }, .ios => .{ .semver = .{ .min = .{ .major = 12, .minor = 0, .patch = 0 }, - .max = .{ .major = 18, .minor = 3, .patch = 0 }, + .max = .{ .major = 18, .minor = 3, .patch = 1 }, }, }, .tvos => .{ @@ -550,13 +550,13 @@ pub const Os = struct { .visionos => .{ .semver = .{ .min = .{ .major = 1, .minor = 0, .patch = 0 }, - .max = .{ .major = 2, .minor = 3, .patch = 0 }, + .max = .{ .major = 2, .minor = 3, .patch = 1 }, }, }, .watchos => .{ .semver = .{ .min = .{ .major = 6, .minor = 0, .patch = 0 }, - .max = .{ .major = 11, .minor = 3, .patch = 0 }, + .max = .{ .major = 11, .minor = 3, .patch = 1 }, }, }, @@ -590,7 +590,7 @@ pub const Os = struct { .amdhsa => .{ .semver = .{ .min = .{ .major = 5, .minor = 0, .patch = 2 }, - .max = .{ .major = 6, .minor = 2, .patch = 2 }, + .max = .{ .major = 6, .minor = 3, .patch = 0 }, }, }, .amdpal => .{ @@ -602,7 +602,7 @@ pub const Os = struct { .cuda => .{ .semver = .{ .min = .{ .major = 11, .minor = 0, .patch = 1 }, - .max = .{ .major = 12, .minor = 6, .patch = 1 }, + .max = .{ .major = 12, .minor = 8, .patch = 0 }, }, }, .nvcl, @@ -610,7 +610,7 @@ pub const Os = struct { => .{ .semver = .{ .min = .{ .major = 2, .minor = 2, .patch = 0 }, - .max = .{ .major = 3, .minor = 0, .patch = 0 }, + .max = .{ .major = 3, .minor = 0, .patch = 17 }, }, }, .opengl => .{ @@ -622,7 +622,7 @@ pub const Os = struct { .vulkan => .{ .semver = .{ .min = .{ .major = 1, .minor = 2, .patch = 0 }, - .max = .{ .major = 1, .minor = 3, .patch = 0 }, + .max = .{ .major = 1, .minor = 4, .patch = 309 }, }, }, };