Skip to content

Commit

Permalink
Fix grpc-swift-protobuf version in hello-world example (#2186)
Browse files Browse the repository at this point in the history
CI is currently failing to build because `grpc-swift-protobuf`'s
dependency on the `hello-world` example points to no a non-existing tag.
  • Loading branch information
gjcairo authored Jan 29, 2025
1 parent 968f4dc commit f1a8497
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Examples/hello-world/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ let package = Package(
platforms: [.macOS("15.0")],
dependencies: [
.package(url: "https://github.com/grpc/grpc-swift.git", exact: "2.0.0-rc.1"),
.package(url: "https://github.com/grpc/grpc-swift-protobuf.git", exact: "2.0.0-rc.1"),
.package(url: "https://github.com/grpc/grpc-swift-protobuf.git", exact: "1.0.0-rc.1"),
.package(url: "https://github.com/grpc/grpc-swift-nio-transport.git", exact: "1.0.0-rc.1"),
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.5.0"),
],
Expand Down

0 comments on commit f1a8497

Please sign in to comment.