Skip to content

Commit eea3d66

Browse files
authored
Merge pull request #69445 from lorentey/stdlib-5.11
[5.11][stdlib] Bump runtime version indicator to 5.11
2 parents 3428135 + afd80c3 commit eea3d66

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

stdlib/public/core/Availability.swift

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,13 @@ extension _SwiftStdlibVersion {
9999
public static var v5_8_0: Self { Self(_value: 0x050800) }
100100
@_alwaysEmitIntoClient
101101
public static var v5_9_0: Self { Self(_value: 0x050900) }
102+
@_alwaysEmitIntoClient
103+
public static var v5_10_0: Self { Self(_value: 0x050A00) }
104+
@_alwaysEmitIntoClient
105+
public static var v5_11_0: Self { Self(_value: 0x050B00) }
102106

103107
@available(SwiftStdlib 5.7, *)
104-
public static var current: Self { .v5_9_0 }
108+
public static var current: Self { .v5_11_0 }
105109
}
106110

107111
@available(SwiftStdlib 5.7, *)

utils/availability-macros.def

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ SwiftStdlib 5.7:macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0
3535
SwiftStdlib 5.8:macOS 13.3, iOS 16.4, watchOS 9.4, tvOS 16.4
3636
SwiftStdlib 5.9:macOS 14.0, iOS 17.0, watchOS 10.0, tvOS 17.0
3737
SwiftStdlib 5.10:macOS 9999, iOS 9999, watchOS 9999, tvOS 9999
38+
SwiftStdlib 5.11:macOS 9999, iOS 9999, watchOS 9999, tvOS 9999
3839
# TODO: Also update ASTContext::getSwift510Availability when needed
40+
# TODO: Also update ASTContext::getSwift511Availability when needed
3941

4042
# Local Variables:
4143
# mode: conf-unix

0 commit comments

Comments
 (0)