mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 07:32:44 +00:00
std.Target: Bump maximum supported versions of all Apple OSs.
https://support.apple.com/en-us/HT201222
This commit is contained in:
parent
b99777940e
commit
8f917870a6
@ -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 => .{
|
||||
|
Loading…
Reference in New Issue
Block a user