zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 86e129eff65f209285e3a3c8430beb41c5acb6cd (tree)
parent 2c9ed6daee002d759332b74bcb875c946e4a02e0
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Wed, 28 Apr 2021 10:26:47 -0700

std.Target: bump freebsd known maximum version

Diffstat:
Mlib/std/target.zig | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/lib/std/target.zig b/lib/std/target.zig @@ -211,8 +211,9 @@ pub const Target = struct { /// If neither of these cases apply, a runtime check should be used to determine if the /// target supports a given OS feature. /// - /// Binaries built with a given maximum version will continue to function on newer operating system - /// versions. However, such a binary may not take full advantage of the newer operating system APIs. + /// Binaries built with a given maximum version will continue to function on newer + /// operating system versions. However, such a binary may not take full advantage of the + /// newer operating system APIs. /// /// See `Os.isAtLeast`. pub const VersionRange = union { @@ -260,7 +261,7 @@ pub const Target = struct { .freebsd => return .{ .semver = Version.Range{ .min = .{ .major = 12, .minor = 0 }, - .max = .{ .major = 12, .minor = 1 }, + .max = .{ .major = 13, .minor = 0 }, }, }, .macos => return .{