zig

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

commit 531cd177e89c1edfcd2e52f74f220eb186a25f78 (tree)
parent b7c01120b41c764e9e453114c3ba840127e60cdd
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Sat, 10 Aug 2024 22:58:41 -0700

Merge pull request #21021 from alexrp/target-os-versions

`std.Target`: Bump some minimum/maximum OS versions, and switch from SunOS to Solaris version numbers
Diffstat:
Mlib/std/Target.zig | 22+++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/lib/std/Target.zig b/lib/std/Target.zig @@ -411,13 +411,13 @@ pub const Os = struct { .aarch64 => VersionRange{ .semver = .{ .min = .{ .major = 11, .minor = 7, .patch = 1 }, - .max = .{ .major = 14, .minor = 1, .patch = 0 }, + .max = .{ .major = 14, .minor = 6, .patch = 1 }, }, }, .x86_64 => VersionRange{ .semver = .{ .min = .{ .major = 11, .minor = 7, .patch = 1 }, - .max = .{ .major = 14, .minor = 1, .patch = 0 }, + .max = .{ .major = 14, .minor = 6, .patch = 1 }, }, }, else => unreachable, @@ -425,25 +425,25 @@ pub const Os = struct { .ios => .{ .semver = .{ .min = .{ .major = 12, .minor = 0, .patch = 0 }, - .max = .{ .major = 17, .minor = 1, .patch = 0 }, + .max = .{ .major = 17, .minor = 6, .patch = 1 }, }, }, .watchos => .{ .semver = .{ .min = .{ .major = 6, .minor = 0, .patch = 0 }, - .max = .{ .major = 10, .minor = 1, .patch = 0 }, + .max = .{ .major = 10, .minor = 6, .patch = 0 }, }, }, .tvos => .{ .semver = .{ .min = .{ .major = 13, .minor = 0, .patch = 0 }, - .max = .{ .major = 17, .minor = 1, .patch = 0 }, + .max = .{ .major = 17, .minor = 6, .patch = 0 }, }, }, .visionos => .{ .semver = .{ .min = .{ .major = 1, .minor = 0, .patch = 0 }, - .max = .{ .major = 1, .minor = 0, .patch = 0 }, + .max = .{ .major = 1, .minor = 3, .patch = 0 }, }, }, .netbsd => .{ @@ -454,8 +454,8 @@ pub const Os = struct { }, .openbsd => .{ .semver = .{ - .min = .{ .major = 6, .minor = 8, .patch = 0 }, - .max = .{ .major = 7, .minor = 4, .patch = 0 }, + .min = .{ .major = 7, .minor = 3, .patch = 0 }, + .max = .{ .major = 7, .minor = 5, .patch = 0 }, }, }, .dragonfly => .{ @@ -466,8 +466,8 @@ pub const Os = struct { }, .solaris => .{ .semver = .{ - .min = .{ .major = 5, .minor = 11, .patch = 0 }, - .max = .{ .major = 5, .minor = 11, .patch = 0 }, + .min = .{ .major = 11, .minor = 0, .patch = 0 }, + .max = .{ .major = 11, .minor = 4, .patch = 0 }, }, }, .wasi => .{ @@ -503,7 +503,7 @@ pub const Os = struct { .windows => .{ .windows = .{ - .min = .win8_1, + .min = .win10, .max = WindowsVersion.latest, }, },