Skip to content

Commit 8193764

Browse files
committed
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
1 parent 432c955 commit 8193764

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Examples/echo/Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ let package = Package(
2121
name: "echo",
2222
platforms: [.macOS("15.0")],
2323
dependencies: [
24-
.package(url: "https://github.com/grpc/grpc-swift-protobuf", branch: "main"),
25-
.package(url: "https://github.com/grpc/grpc-swift-nio-transport", branch: "main"),
24+
.package(url: "https://github.com/grpc/grpc-swift-protobuf", exact: "1.0.0-alpha.1"),
25+
.package(url: "https://github.com/grpc/grpc-swift-nio-transport", branch: "1.0.0-alpha.1"),
2626
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.5.0"),
2727
],
2828
targets: [

Examples/hello-world/Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ let package = Package(
2121
name: "hello-world",
2222
platforms: [.macOS("15.0")],
2323
dependencies: [
24-
.package(url: "https://github.com/grpc/grpc-swift-protobuf", branch: "main"),
25-
.package(url: "https://github.com/grpc/grpc-swift-nio-transport", branch: "main"),
24+
.package(url: "https://github.com/grpc/grpc-swift-protobuf", exact: "1.0.0-alpha.1"),
25+
.package(url: "https://github.com/grpc/grpc-swift-nio-transport", exact: "1.0.0-alpha.1"),
2626
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.5.0"),
2727
],
2828
targets: [

Examples/route-guide/Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ let package = Package(
2121
name: "route-guide",
2222
platforms: [.macOS("15.0")],
2323
dependencies: [
24-
.package(url: "https://github.com/grpc/grpc-swift-protobuf", branch: "main"),
25-
.package(url: "https://github.com/grpc/grpc-swift-nio-transport", branch: "main"),
24+
.package(url: "https://github.com/grpc/grpc-swift-protobuf", exact: "1.0.0-alpha.1"),
25+
.package(url: "https://github.com/grpc/grpc-swift-nio-transport", exact: "1.0.0-alpha.1"),
2626
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.5.0"),
2727
],
2828
targets: [

0 commit comments

Comments
 (0)