Skip to content

Bump the Swift version to 6.2 #8135

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

Merged
merged 1 commit into from
Dec 2, 2024
Merged
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
2 changes: 1 addition & 1 deletion Sources/Basics/SwiftVersion.swift
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public struct SwiftVersion: Sendable {
extension SwiftVersion {
/// The current version of the package manager.
public static let current = SwiftVersion(
version: (6, 1, 0),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's great we are increasing the Swift Version, however we should also add a 6.1 entry in the ToolsVersion and replace any referenced of tools version 999.0 with 6.1. I'm happy to push a commit to the branch with the appropriate changes!

Then, once this is merged, we would only need to ensure the version is updated back to 6.1 in the release/6.1 branch!

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm happy to push a commit to the branch with the appropriate changes!

Once this change is merged, let's create a new PR so it can be discussed separately.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reverted in #8173 8173

version: (6, 2, 0),
isDevelopment: true,
buildIdentifier: getBuildIdentifier()
)
Expand Down