From d926944ae245d41d854599e2074ea5e4e7ca9f1f Mon Sep 17 00:00:00 2001 From: Michael Chiu Date: Mon, 6 Jan 2025 20:27:10 -0800 Subject: [PATCH] set Platform.freebsd availability behind 999.0 --- Sources/PackageDescription/SupportedPlatforms.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/PackageDescription/SupportedPlatforms.swift b/Sources/PackageDescription/SupportedPlatforms.swift index cde8c6b2ccf..704d7f06558 100644 --- a/Sources/PackageDescription/SupportedPlatforms.swift +++ b/Sources/PackageDescription/SupportedPlatforms.swift @@ -71,7 +71,7 @@ public struct Platform: Equatable, Sendable { public static let openbsd: Platform = Platform(name: "openbsd") /// The FreeBSD platform. -// @available(_PackageDescription, introduced: ??.??) + @available(_PackageDescription, introduced: 999.0) public static let freebsd: Platform = Platform(name: "freebsd") }