Skip to content

Commit 7a0bcfa

Browse files
authored
Merge pull request #63046 from lorentey/stdlib-5.9
[stdlib] Define and bump to version 5.9
2 parents 6118ea5 + 0a041c0 commit 7a0bcfa

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

stdlib/public/core/Availability.swift

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,17 @@ extension _SwiftStdlibVersion {
8888
@_alwaysEmitIntoClient
8989
public static var v5_7_0: Self { Self(_value: 0x050700) }
9090

91-
// Note: As of now, there is no bincompat level defined for v5.8. If you need
92-
// to use this in a call to `_isExecutableLinkedOnOrAfter`, then you'll need
93-
// to define this version in the runtime.
91+
// Note: As of now, there is no bincompat level defined for the versions
92+
// below. If you need to use one of these in a call to
93+
// `_isExecutableLinkedOnOrAfter`, then you'll need to define the
94+
// corresponding version in the runtime.
9495
@_alwaysEmitIntoClient
9596
public static var v5_8_0: Self { Self(_value: 0x050800) }
97+
@_alwaysEmitIntoClient
98+
public static var v5_9_0: Self { Self(_value: 0x050900) }
9699

97100
@available(SwiftStdlib 5.7, *)
98-
public static var current: Self { .v5_8_0 }
101+
public static var current: Self { .v5_9_0 }
99102
}
100103

101104
@available(SwiftStdlib 5.7, *)

utils/availability-macros.def

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ SwiftStdlib 5.5:macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0
3333
SwiftStdlib 5.6:macOS 12.3, iOS 15.4, watchOS 8.5, tvOS 15.4
3434
SwiftStdlib 5.7:macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0
3535
SwiftStdlib 5.8:macOS 9999, iOS 9999, watchOS 9999, tvOS 9999
36+
SwiftStdlib 5.9:macOS 9999, iOS 9999, watchOS 9999, tvOS 9999
3637

3738
# Local Variables:
3839
# mode: conf-unix

0 commit comments

Comments
 (0)