From f1a8497647d05bfcc3f57904ba5ea819206687db Mon Sep 17 00:00:00 2001 From: Gus Cairo Date: Wed, 29 Jan 2025 06:51:34 +0000 Subject: [PATCH] Fix grpc-swift-protobuf version in hello-world example (#2186) CI is currently failing to build because `grpc-swift-protobuf`'s dependency on the `hello-world` example points to no a non-existing tag. --- Examples/hello-world/Package.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples/hello-world/Package.swift b/Examples/hello-world/Package.swift index 2fe6d8f3f..237b86d8f 100644 --- a/Examples/hello-world/Package.swift +++ b/Examples/hello-world/Package.swift @@ -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"), ],