Skip to content

[stdlib][runtime] Establish Swift Stdlib/runtime version 6.3 #80870

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions include/swift/AST/RuntimeVersions.def
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,11 @@ RUNTIME_VERSION(
FUTURE
)

RUNTIME_VERSION(
(6, 3),
FUTURE
)

END_MAJOR_VERSION(6)

// .......................................................................... //
Expand Down
4 changes: 3 additions & 1 deletion stdlib/public/core/Availability.swift
Original file line number Diff line number Diff line change
Expand Up @@ -240,9 +240,11 @@ extension _SwiftStdlibVersion {
public static var v6_1_0: Self { Self(_value: 0x060100) }
@_alwaysEmitIntoClient
public static var v6_2_0: Self { Self(_value: 0x060200) }
@_alwaysEmitIntoClient
public static var v6_3_0: Self { Self(_value: 0x060300) }

@available(SwiftStdlib 5.7, *)
public static var current: Self { .v6_2_0 }
public static var current: Self { .v6_3_0 }
}

@available(SwiftStdlib 5.7, *)
Expand Down
1 change: 1 addition & 0 deletions utils/availability-macros.def
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ SwiftStdlib 5.10:macOS 14.4, iOS 17.4, watchOS 10.4, tvOS 17.4, visionOS 1.1
SwiftStdlib 6.0:macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0
SwiftStdlib 6.1:macOS 15.4, iOS 18.4, watchOS 11.4, tvOS 18.4, visionOS 2.4
SwiftStdlib 6.2:macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, visionOS 9999
SwiftStdlib 6.3:macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, visionOS 9999

# Like SwiftStdlib 5.0, but also the oldest visionOS from SwiftStdlib 5.10.
SwiftCompatibilitySpan 5.0:macOS 10.14.4, iOS 12.2, watchOS 5.2, tvOS 12.2, visionOS 1.1
Expand Down