Skip to content

Commit 8f91787

Browse files
committed
std.Target: Bump maximum supported versions of all Apple OSs.
https://support.apple.com/en-us/HT201222
1 parent b997779 commit 8f91787

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/std/Target.zig

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -411,39 +411,39 @@ pub const Os = struct {
411411
.aarch64 => VersionRange{
412412
.semver = .{
413413
.min = .{ .major = 11, .minor = 7, .patch = 1 },
414-
.max = .{ .major = 14, .minor = 1, .patch = 0 },
414+
.max = .{ .major = 14, .minor = 6, .patch = 1 },
415415
},
416416
},
417417
.x86_64 => VersionRange{
418418
.semver = .{
419419
.min = .{ .major = 11, .minor = 7, .patch = 1 },
420-
.max = .{ .major = 14, .minor = 1, .patch = 0 },
420+
.max = .{ .major = 14, .minor = 6, .patch = 1 },
421421
},
422422
},
423423
else => unreachable,
424424
},
425425
.ios => .{
426426
.semver = .{
427427
.min = .{ .major = 12, .minor = 0, .patch = 0 },
428-
.max = .{ .major = 17, .minor = 1, .patch = 0 },
428+
.max = .{ .major = 17, .minor = 6, .patch = 1 },
429429
},
430430
},
431431
.watchos => .{
432432
.semver = .{
433433
.min = .{ .major = 6, .minor = 0, .patch = 0 },
434-
.max = .{ .major = 10, .minor = 1, .patch = 0 },
434+
.max = .{ .major = 10, .minor = 6, .patch = 0 },
435435
},
436436
},
437437
.tvos => .{
438438
.semver = .{
439439
.min = .{ .major = 13, .minor = 0, .patch = 0 },
440-
.max = .{ .major = 17, .minor = 1, .patch = 0 },
440+
.max = .{ .major = 17, .minor = 6, .patch = 0 },
441441
},
442442
},
443443
.visionos => .{
444444
.semver = .{
445445
.min = .{ .major = 1, .minor = 0, .patch = 0 },
446-
.max = .{ .major = 1, .minor = 0, .patch = 0 },
446+
.max = .{ .major = 1, .minor = 3, .patch = 0 },
447447
},
448448
},
449449
.netbsd => .{

0 commit comments

Comments
 (0)