Skip to content

Commit 1162dae

Browse files
committed
Change version dependency on swift-argument-parser to from upToNextMinor to upToNextMajor
This will make SwiftSyntax more tolerant with regard to which swift-argument-parser version it needs, resulting in fewer version conflicts for users of SwiftSyntax.
1 parent cdb0928 commit 1162dae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ let package = Package(
224224
if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil {
225225
// Building standalone.
226226
package.dependencies += [
227-
.package(url: "https://github.com/apple/swift-argument-parser.git", .upToNextMinor(from: "1.2.2"))
227+
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.2.2")
228228
]
229229
} else {
230230
package.dependencies += [

0 commit comments

Comments
 (0)