From 81937648558625ed28efea1135c9b7b3783e7b48 Mon Sep 17 00:00:00 2001 From: George Barnett Date: Tue, 1 Oct 2024 15:16:39 +0100 Subject: [PATCH] Update examples Motivation: The examples depend on the main branch of our various packages. These can now use the tagged releases. Modifications: - Update dependencies in examples Result: Examples are up-to-date --- Examples/echo/Package.swift | 4 ++-- Examples/hello-world/Package.swift | 4 ++-- Examples/route-guide/Package.swift | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Examples/echo/Package.swift b/Examples/echo/Package.swift index d9769fb16..4510456be 100644 --- a/Examples/echo/Package.swift +++ b/Examples/echo/Package.swift @@ -21,8 +21,8 @@ let package = Package( name: "echo", platforms: [.macOS("15.0")], dependencies: [ - .package(url: "https://github.com/grpc/grpc-swift-protobuf", branch: "main"), - .package(url: "https://github.com/grpc/grpc-swift-nio-transport", branch: "main"), + .package(url: "https://github.com/grpc/grpc-swift-protobuf", exact: "1.0.0-alpha.1"), + .package(url: "https://github.com/grpc/grpc-swift-nio-transport", branch: "1.0.0-alpha.1"), .package(url: "https://github.com/apple/swift-argument-parser", from: "1.5.0"), ], targets: [ diff --git a/Examples/hello-world/Package.swift b/Examples/hello-world/Package.swift index 94c96c027..52a9b349a 100644 --- a/Examples/hello-world/Package.swift +++ b/Examples/hello-world/Package.swift @@ -21,8 +21,8 @@ let package = Package( name: "hello-world", platforms: [.macOS("15.0")], dependencies: [ - .package(url: "https://github.com/grpc/grpc-swift-protobuf", branch: "main"), - .package(url: "https://github.com/grpc/grpc-swift-nio-transport", branch: "main"), + .package(url: "https://github.com/grpc/grpc-swift-protobuf", exact: "1.0.0-alpha.1"), + .package(url: "https://github.com/grpc/grpc-swift-nio-transport", exact: "1.0.0-alpha.1"), .package(url: "https://github.com/apple/swift-argument-parser", from: "1.5.0"), ], targets: [ diff --git a/Examples/route-guide/Package.swift b/Examples/route-guide/Package.swift index baf6d2162..79e553920 100644 --- a/Examples/route-guide/Package.swift +++ b/Examples/route-guide/Package.swift @@ -21,8 +21,8 @@ let package = Package( name: "route-guide", platforms: [.macOS("15.0")], dependencies: [ - .package(url: "https://github.com/grpc/grpc-swift-protobuf", branch: "main"), - .package(url: "https://github.com/grpc/grpc-swift-nio-transport", branch: "main"), + .package(url: "https://github.com/grpc/grpc-swift-protobuf", exact: "1.0.0-alpha.1"), + .package(url: "https://github.com/grpc/grpc-swift-nio-transport", exact: "1.0.0-alpha.1"), .package(url: "https://github.com/apple/swift-argument-parser", from: "1.5.0"), ], targets: [