From 38619997ef591ca200c497f11dddd2ad6bd2c74a Mon Sep 17 00:00:00 2001 From: Tony Allevato Date: Thu, 5 Jan 2023 10:45:56 -0800 Subject: [PATCH] Pin dependencies other than swift-syntax to more specific versions. * swift-argument-parser is pinned to the same version range used by swift-syntax, and these should be kept in sync. * swift-tools-support-core is pinned to a specific version (not a range). --- Package.swift | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Package.swift b/Package.swift index 9ab3fa332..9762b661c 100644 --- a/Package.swift +++ b/Package.swift @@ -215,7 +215,9 @@ if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil { package.dependencies += [ .package( url: "https://github.com/apple/swift-argument-parser.git", - branch: "main" + // This should be kept in sync with the same dependency used by + // swift-syntax. + Version("1.0.1")..