Skip to content

Commit 214b209

Browse files
committed
Update availability for the 5.8 release
1 parent b4b4315 commit 214b209

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Package.swift

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ let availabilityDefinition = PackageDescription.SwiftSetting.unsafeFlags([
1111
"-Xfrontend",
1212
"-define-availability",
1313
"-Xfrontend",
14-
"SwiftStdlib 5.8:macOS 9999, iOS 9999, watchOS 9999, tvOS 9999",
14+
"SwiftStdlib 5.8:macOS 13.3, iOS 16.4, watchOS 9.4, tvOS 16.4",
15+
"-Xfrontend",
16+
"-define-availability",
17+
"-Xfrontend",
18+
"SwiftStdlib 5.9:macOS 9999, iOS 9999, watchOS 9999, tvOS 9999",
1519
])
1620

1721
/// Swift settings for building a private stdlib-like module that is to be used

Sources/RegexTester/RegexTester.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import _RegexParser
1414
import _StringProcessing
1515

1616
@main
17-
@available(macOS 9999, *)
17+
@available(SwiftStdlib 5.8, *)
1818
struct RegexTester: ParsableCommand {
1919
typealias MatchFunctionType = (String) throws -> Regex<AnyRegexOutput>.Match?
2020

0 commit comments

Comments
 (0)