std: bump max macOS version to 13.3

This commit is contained in:
Jakub Konka 2023-03-31 21:22:30 +02:00
parent 26c88e4f45
commit f6845bbbc6

View File

@ -280,13 +280,13 @@ pub const Target = struct {
.aarch64 => VersionRange{
.semver = .{
.min = .{ .major = 11, .minor = 7, .patch = 1 },
.max = .{ .major = 13, .minor = 0 },
.max = .{ .major = 13, .minor = 3 },
},
},
.x86_64 => VersionRange{
.semver = .{
.min = .{ .major = 11, .minor = 7, .patch = 1 },
.max = .{ .major = 13, .minor = 0 },
.max = .{ .major = 13, .minor = 3 },
},
},
else => unreachable,