authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-08-04 11:02:50+02:00
committergravatar for noreply@github.comGitHub <noreply@github.com> 2025-08-04 11:02:50+02:00
log65db19a289f39bf3d0703164966eaeadb51cabab
treec7644c861056df2dcd28e5cff4992b7252a76e91
parentdabae3f9dc868af92e7608d897befc39e5db5c33
parentba7cc72c47a96fc4dad1ae35c58642debe1e2820
signaturebadge-check Signed by PGP key B5690EEEBB952194

Merge pull request #24680 from alexrp/target-os-versions

`std.Target`: Bump min/max OS versions for 0.15.0

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

lib/std/Target.zig+14-14
......@@ -405,7 +405,7 @@ pub const Os = struct {
405405 .fuchsia => .{
406406 .semver = .{
407407 .min = .{ .major = 1, .minor = 0, .patch = 0 },
408 .max = .{ .major = 26, .minor = 0, .patch = 0 },
408 .max = .{ .major = 27, .minor = 0, .patch = 0 },
409409 },
410410 },
411411 .hermit => .{
......@@ -446,7 +446,7 @@ pub const Os = struct {
446446
447447 break :blk default_min;
448448 },
449 .max = .{ .major = 6, .minor = 13, .patch = 4 },
449 .max = .{ .major = 6, .minor = 16, .patch = 0 },
450450 },
451451 .glibc = blk: {
452452 // For 32-bit targets that traditionally used 32-bit time, we require
......@@ -519,7 +519,7 @@ pub const Os = struct {
519519
520520 break :blk default_min;
521521 },
522 .max = .{ .major = 14, .minor = 2, .patch = 0 },
522 .max = .{ .major = 14, .minor = 3, .patch = 0 },
523523 },
524524 },
525525 .netbsd => .{
......@@ -549,38 +549,38 @@ pub const Os = struct {
549549
550550 .driverkit => .{
551551 .semver = .{
552 .min = .{ .major = 19, .minor = 0, .patch = 0 },
553 .max = .{ .major = 24, .minor = 4, .patch = 0 },
552 .min = .{ .major = 20, .minor = 0, .patch = 0 },
553 .max = .{ .major = 25, .minor = 0, .patch = 0 },
554554 },
555555 },
556556 .macos => .{
557557 .semver = .{
558558 .min = .{ .major = 13, .minor = 0, .patch = 0 },
559 .max = .{ .major = 15, .minor = 4, .patch = 1 },
559 .max = .{ .major = 15, .minor = 6, .patch = 0 },
560560 },
561561 },
562562 .ios => .{
563563 .semver = .{
564564 .min = .{ .major = 15, .minor = 0, .patch = 0 },
565 .max = .{ .major = 18, .minor = 4, .patch = 1 },
565 .max = .{ .major = 18, .minor = 6, .patch = 0 },
566566 },
567567 },
568568 .tvos => .{
569569 .semver = .{
570570 .min = .{ .major = 15, .minor = 0, .patch = 0 },
571 .max = .{ .major = 18, .minor = 4, .patch = 1 },
571 .max = .{ .major = 18, .minor = 5, .patch = 0 },
572572 },
573573 },
574574 .visionos => .{
575575 .semver = .{
576576 .min = .{ .major = 1, .minor = 0, .patch = 0 },
577 .max = .{ .major = 2, .minor = 4, .patch = 1 },
577 .max = .{ .major = 2, .minor = 5, .patch = 0 },
578578 },
579579 },
580580 .watchos => .{
581581 .semver = .{
582 .min = .{ .major = 7, .minor = 0, .patch = 0 },
583 .max = .{ .major = 11, .minor = 4, .patch = 0 },
582 .min = .{ .major = 8, .minor = 0, .patch = 0 },
583 .max = .{ .major = 11, .minor = 6, .patch = 0 },
584584 },
585585 },
586586
......@@ -614,7 +614,7 @@ pub const Os = struct {
614614 .amdhsa => .{
615615 .semver = .{
616616 .min = .{ .major = 5, .minor = 0, .patch = 0 },
617 .max = .{ .major = 6, .minor = 4, .patch = 0 },
617 .max = .{ .major = 6, .minor = 4, .patch = 2 },
618618 },
619619 },
620620 .amdpal => .{
......@@ -626,7 +626,7 @@ pub const Os = struct {
626626 .cuda => .{
627627 .semver = .{
628628 .min = .{ .major = 11, .minor = 0, .patch = 1 },
629 .max = .{ .major = 12, .minor = 9, .patch = 0 },
629 .max = .{ .major = 12, .minor = 9, .patch = 1 },
630630 },
631631 },
632632 .nvcl,
......@@ -646,7 +646,7 @@ pub const Os = struct {
646646 .vulkan => .{
647647 .semver = .{
648648 .min = .{ .major = 1, .minor = 2, .patch = 0 },
649 .max = .{ .major = 1, .minor = 4, .patch = 313 },
649 .max = .{ .major = 1, .minor = 4, .patch = 321 },
650650 },
651651 },
652652 };