Skip to content

Commit 5a546c7

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 c6ea0d7 commit 5a546c7

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
@@ -267,7 +267,7 @@ let package = Package(
267267
if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil {
268268
// Building standalone.
269269
package.dependencies += [
270-
.package(url: "https://github.com/apple/swift-argument-parser.git", .upToNextMinor(from: "1.2.2"))
270+
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.2.2")
271271
]
272272
} else {
273273
package.dependencies += [

0 commit comments

Comments
 (0)