Skip to content
Merged
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
2 changes: 1 addition & 1 deletion Sources/Basics/SwiftVersion.swift
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public struct SwiftVersion {
extension SwiftVersion {
/// The current version of the package manager.
public static let current = SwiftVersion(
version: (5, 9, 0),
version: (5, 10, 0),
isDevelopment: true,
buildIdentifier: getBuildIdentifier()
)
Expand Down
1 change: 1 addition & 0 deletions Sources/PackageModel/ToolsVersion.swift
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public struct ToolsVersion: Equatable, Hashable, Codable, Sendable {
public static let v5_7 = ToolsVersion(version: "5.7.0")
public static let v5_8 = ToolsVersion(version: "5.8.0")
public static let v5_9 = ToolsVersion(version: "5.9.0")
public static let v5_10 = ToolsVersion(version: "5.10.0")
public static let vNext = ToolsVersion(version: "999.0.0")

/// The current tools version in use.
Expand Down