Skip to content

Commit fedd5af

Browse files
committed
[SPARK-52248] Use exact versions of dependency
### What changes were proposed in this pull request? This PR aims to use `exact` versions of dependency. ### Why are the changes needed? To prevent the unintended compilation failure. Currently, all builds are broken like the following due to the latest release issue. - #165 ### Does this PR introduce _any_ user-facing change? No behavior change. ### How was this patch tested? Pass the CIs (recovering from the failure). ### Was this patch authored or co-authored using generative AI tooling? No. Closes #166 from dongjoon-hyun/SPARK-52248. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent eb0992d commit fedd5af

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ let package = Package(
3434
targets: ["SparkConnect"])
3535
],
3636
dependencies: [
37-
.package(url: "https://github.com/grpc/grpc-swift.git", from: "2.2.1"),
38-
.package(url: "https://github.com/grpc/grpc-swift-protobuf.git", from: "1.2.0"),
39-
.package(url: "https://github.com/grpc/grpc-swift-nio-transport.git", from: "1.1.0"),
37+
.package(url: "https://github.com/grpc/grpc-swift.git", exact: "2.2.1"),
38+
.package(url: "https://github.com/grpc/grpc-swift-protobuf.git", exact: "1.2.0"),
39+
.package(url: "https://github.com/grpc/grpc-swift-nio-transport.git", exact: "1.1.0"),
4040
.package(url: "https://github.com/google/flatbuffers.git", branch: "v25.2.10"),
4141
],
4242
targets: [

0 commit comments

Comments
 (0)