std.Target: bump max versions for Apple targets

This commit is contained in:
Alex Rønne Petersen 2025-08-03 20:05:21 +02:00
parent 5b74d33471
commit e9093b8d18
No known key found for this signature in database

View file

@ -550,37 +550,37 @@ pub const Os = struct {
.driverkit => .{
.semver = .{
.min = .{ .major = 19, .minor = 0, .patch = 0 },
.max = .{ .major = 24, .minor = 4, .patch = 0 },
.max = .{ .major = 25, .minor = 0, .patch = 0 },
},
},
.macos => .{
.semver = .{
.min = .{ .major = 13, .minor = 0, .patch = 0 },
.max = .{ .major = 15, .minor = 4, .patch = 1 },
.max = .{ .major = 15, .minor = 6, .patch = 0 },
},
},
.ios => .{
.semver = .{
.min = .{ .major = 15, .minor = 0, .patch = 0 },
.max = .{ .major = 18, .minor = 4, .patch = 1 },
.max = .{ .major = 18, .minor = 6, .patch = 0 },
},
},
.tvos => .{
.semver = .{
.min = .{ .major = 15, .minor = 0, .patch = 0 },
.max = .{ .major = 18, .minor = 4, .patch = 1 },
.max = .{ .major = 18, .minor = 5, .patch = 0 },
},
},
.visionos => .{
.semver = .{
.min = .{ .major = 1, .minor = 0, .patch = 0 },
.max = .{ .major = 2, .minor = 4, .patch = 1 },
.max = .{ .major = 2, .minor = 5, .patch = 0 },
},
},
.watchos => .{
.semver = .{
.min = .{ .major = 7, .minor = 0, .patch = 0 },
.max = .{ .major = 11, .minor = 4, .patch = 0 },
.max = .{ .major = 11, .minor = 6, .patch = 0 },
},
},