authorgravatar for mail@linusgroh.deLinus Groh <mail@linusgroh.de> 2026-05-22 00:24:04+01:00
committergravatar for mail@linusgroh.deLinus Groh <mail@linusgroh.de> 2026-05-22 00:44:16+01:00
log761809e793e8815825fee7943a4b4c6c2432ad1c
tree5d2bbb1096adc09b6cbc2a03053a601bbdde4802
parent10bdb48a889f5b0b65a96909902eeeedc6cd923e

std.Target: Update supported Apple OS versions


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

lib/std/Target.zig+10-10
......@@ -559,37 +559,37 @@ pub const Os = struct {
559559 .driverkit => .{
560560 .semver = .{
561561 .min = .{ .major = 20, .minor = 0, .patch = 0 },
562 .max = .{ .major = 25, .minor = 0, .patch = 0 },
562 .max = .{ .major = 25, .minor = 5, .patch = 0 },
563563 },
564564 },
565565 .macos => .{
566566 .semver = .{
567 .min = .{ .major = 13, .minor = 0, .patch = 0 },
568 .max = .{ .major = 15, .minor = 6, .patch = 0 },
567 .min = .{ .major = 14, .minor = 0, .patch = 0 },
568 .max = .{ .major = 26, .minor = 5, .patch = 0 },
569569 },
570570 },
571571 .ios, .maccatalyst => .{
572572 .semver = .{
573573 .min = .{ .major = 15, .minor = 0, .patch = 0 },
574 .max = .{ .major = 18, .minor = 6, .patch = 0 },
574 .max = .{ .major = 26, .minor = 5, .patch = 0 },
575575 },
576576 },
577577 .tvos => .{
578578 .semver = .{
579 .min = .{ .major = 15, .minor = 0, .patch = 0 },
580 .max = .{ .major = 18, .minor = 5, .patch = 0 },
579 .min = .{ .major = 26, .minor = 0, .patch = 0 },
580 .max = .{ .major = 26, .minor = 5, .patch = 0 },
581581 },
582582 },
583583 .visionos => .{
584584 .semver = .{
585 .min = .{ .major = 1, .minor = 0, .patch = 0 },
586 .max = .{ .major = 2, .minor = 5, .patch = 0 },
585 .min = .{ .major = 26, .minor = 0, .patch = 0 },
586 .max = .{ .major = 26, .minor = 5, .patch = 0 },
587587 },
588588 },
589589 .watchos => .{
590590 .semver = .{
591 .min = .{ .major = 8, .minor = 0, .patch = 0 },
592 .max = .{ .major = 11, .minor = 6, .patch = 0 },
591 .min = .{ .major = 11, .minor = 0, .patch = 0 },
592 .max = .{ .major = 26, .minor = 5, .patch = 0 },
593593 },
594594 },
595595