authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-08-10 18:09:07+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-08-10 20:24:22+02:00
log8f917870a688ffa9e8369f10192988849684efe3
tree3b4c5ae2997010ba03ead575bbf306b147fad560
parentb99777940e54474d4bf663a144d130c07e57ccc3
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

std.Target: Bump maximum supported versions of all Apple OSs.

https://support.apple.com/en-us/HT201222

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

lib/std/Target.zig+6-6
...@@ -411,13 +411,13 @@ pub const Os = struct {...@@ -411,13 +411,13 @@ pub const Os = struct {
411 .aarch64 => VersionRange{411 .aarch64 => VersionRange{
412 .semver = .{412 .semver = .{
413 .min = .{ .major = 11, .minor = 7, .patch = 1 },413 .min = .{ .major = 11, .minor = 7, .patch = 1 },
414 .max = .{ .major = 14, .minor = 1, .patch = 0 },414 .max = .{ .major = 14, .minor = 6, .patch = 1 },
415 },415 },
416 },416 },
417 .x86_64 => VersionRange{417 .x86_64 => VersionRange{
418 .semver = .{418 .semver = .{
419 .min = .{ .major = 11, .minor = 7, .patch = 1 },419 .min = .{ .major = 11, .minor = 7, .patch = 1 },
420 .max = .{ .major = 14, .minor = 1, .patch = 0 },420 .max = .{ .major = 14, .minor = 6, .patch = 1 },
421 },421 },
422 },422 },
423 else => unreachable,423 else => unreachable,
...@@ -425,25 +425,25 @@ pub const Os = struct {...@@ -425,25 +425,25 @@ pub const Os = struct {
425 .ios => .{425 .ios => .{
426 .semver = .{426 .semver = .{
427 .min = .{ .major = 12, .minor = 0, .patch = 0 },427 .min = .{ .major = 12, .minor = 0, .patch = 0 },
428 .max = .{ .major = 17, .minor = 1, .patch = 0 },428 .max = .{ .major = 17, .minor = 6, .patch = 1 },
429 },429 },
430 },430 },
431 .watchos => .{431 .watchos => .{
432 .semver = .{432 .semver = .{
433 .min = .{ .major = 6, .minor = 0, .patch = 0 },433 .min = .{ .major = 6, .minor = 0, .patch = 0 },
434 .max = .{ .major = 10, .minor = 1, .patch = 0 },434 .max = .{ .major = 10, .minor = 6, .patch = 0 },
435 },435 },
436 },436 },
437 .tvos => .{437 .tvos => .{
438 .semver = .{438 .semver = .{
439 .min = .{ .major = 13, .minor = 0, .patch = 0 },439 .min = .{ .major = 13, .minor = 0, .patch = 0 },
440 .max = .{ .major = 17, .minor = 1, .patch = 0 },440 .max = .{ .major = 17, .minor = 6, .patch = 0 },
441 },441 },
442 },442 },
443 .visionos => .{443 .visionos => .{
444 .semver = .{444 .semver = .{
445 .min = .{ .major = 1, .minor = 0, .patch = 0 },445 .min = .{ .major = 1, .minor = 0, .patch = 0 },
446 .max = .{ .major = 1, .minor = 0, .patch = 0 },446 .max = .{ .major = 1, .minor = 3, .patch = 0 },
447 },447 },
448 },448 },
449 .netbsd => .{449 .netbsd => .{