Skip to content

Commit 1eaba32

Browse files
committed
Update dependencies and fix WrkstrmFoundation package URL
Updated swift-tools-version to 6.2 and changed the WrkstrmFoundation package reference to use the correct lowercase URL for remote dependencies. Also updated versions for swift-configuration and swift-log in Package.resolved.
1 parent 7852fd4 commit 1eaba32

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

Package.resolved

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version: 6.1
1+
// swift-tools-version: 6.2
22
import Foundation
33
import PackageDescription
44

@@ -73,7 +73,7 @@ let package = Package(
7373
"CommonShell",
7474
.product(name: "CommonProcessExecutionKit", package: processPackageName),
7575
.product(name: "CommonLog", package: "common-log"),
76-
.product(name: "WrkstrmFoundation", package: "WrkstrmFoundation"),
76+
.product(name: "WrkstrmFoundation", package: "wrkstrm-foundation"),
7777
.product(name: "ArgumentParser", package: "swift-argument-parser"),
7878
],
7979
path: "sources/common-shell-arguments",
@@ -152,14 +152,14 @@ extension Package {
152152
.package(path: "../common-process"),
153153
.package(name: "common-log", path: "../../../../common/domain/system/common-log"),
154154
.package(path: "../../../../wrkstrm-performance"),
155-
.package(name: "wrkstrm-foundation", path: "../../../../domain/system/wrkstrm-foundation"),
155+
.package(url: "https://github.com/wrkstrm/wrkstrm-foundation.git", from: "3.0.0"),
156156
])
157157

158158
static var remote: Inject = .init(dependencies: [
159159
.package(url: "https://github.com/wrkstrm/common-process.git", from: "0.3.0"),
160160
.package(url: "https://github.com/wrkstrm/common-log.git", from: "3.0.0"),
161161
.package(url: "https://github.com/wrkstrm/wrkstrm-performance.git", from: "0.1.0"),
162-
.package(url: "https://github.com/wrkstrm/WrkstrmFoundation.git", from: "3.0.0"),
162+
.package(url: "https://github.com/wrkstrm/wrkstrm-foundation.git", from: "3.0.0"),
163163
])
164164
}
165165
}

0 commit comments

Comments
 (0)