Skip to content

Commit

Permalink
Update upstream grpc-swift to v1.0.0-alpha.14
Browse files Browse the repository at this point in the history
  • Loading branch information
vyshane committed Jun 11, 2020
1 parent b028a84 commit 186d27c
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
24 changes: 12 additions & 12 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/grpc/grpc-swift.git",
"state": {
"branch": null,
"revision": "dca180f7f7f3bdd495d294ca2a463a82b5e33900",
"version": "1.0.0-alpha.13"
"revision": "399cfe1cfec19d8dc37dcd945a389e6eaae3ea43",
"version": "1.0.0-alpha.14"
}
},
{
Expand All @@ -24,44 +24,44 @@
"repositoryURL": "https://github.com/apple/swift-nio.git",
"state": {
"branch": null,
"revision": "c5fa0b456524cd73dc3ddbb263d4f46c20b86ca3",
"version": "2.17.0"
"revision": "120acb15c39aa3217e9888e515de160378fbcc1e",
"version": "2.18.0"
}
},
{
"package": "swift-nio-http2",
"repositoryURL": "https://github.com/apple/swift-nio-http2.git",
"state": {
"branch": null,
"revision": "c8f952dbc37fe60def17eb15e2c90787ce6ee78a",
"version": "1.12.1"
"revision": "c5d10f4165128c3d0cc0e3c0f0a8ef55947a73a6",
"version": "1.12.2"
}
},
{
"package": "swift-nio-ssl",
"repositoryURL": "https://github.com/apple/swift-nio-ssl.git",
"state": {
"branch": null,
"revision": "67303bd6d8c8b2bb69c44626156cfe802d6cff28",
"version": "2.7.2"
"revision": "9cb641037babeda5031b6ee6078d579c86fd67cb",
"version": "2.7.4"
}
},
{
"package": "swift-nio-transport-services",
"repositoryURL": "https://github.com/apple/swift-nio-transport-services.git",
"state": {
"branch": null,
"revision": "85a67aea7caf5396ed599543dd23cffeb6dbbf96",
"version": "1.5.1"
"revision": "2ac8fde712c1b1a147ecb7065824a40d2c09d0cb",
"version": "1.6.0"
}
},
{
"package": "SwiftProtobuf",
"repositoryURL": "https://github.com/apple/swift-protobuf.git",
"state": {
"branch": null,
"revision": "7790acf0a81d08429cb20375bf42a8c7d279c5fe",
"version": "1.8.0"
"revision": "7f36441e3372665b1b414f8ac93b5905cc42a405",
"version": "1.9.0"
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ let package = Package(
targets: ["CombineGRPC"]),
],
dependencies: [
.package(url: "https://github.com/grpc/grpc-swift.git", from: "1.0.0-alpha.13"),
.package(url: "https://github.com/grpc/grpc-swift.git", from: "1.0.0-alpha.14"),
],
targets: [
.target(
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Status

CombineGRPC depends on Swift gRPC v1.0.0-alpha.13, and integrates with Apple's new Combine framework.
CombineGRPC depends on Swift gRPC v1.0.0-alpha.14, and integrates with Apple's new Combine framework.

## gRPC and Combine, Better Together

Expand Down Expand Up @@ -173,7 +173,7 @@ brew install protobuf
brew install swift-protobuf
```

Next, download the latest version of grpc-swift with NIO support. Currently that means [Swift gRPC 1.0.0-alpha.13](https://github.com/grpc/grpc-swift/releases/tag/1.0.0-alpha.13). Unarchive the downloaded file and build the Swift gRPC plugin by running make in the root directory of the project.
Next, download the latest version of grpc-swift with NIO support. Currently that means [Swift gRPC 1.0.0-alpha.14](https://github.com/grpc/grpc-swift/releases/tag/1.0.0-alpha.14). Unarchive the downloaded file and build the Swift gRPC plugin by running make in the root directory of the project.

```text
make plugin
Expand Down Expand Up @@ -202,7 +202,7 @@ You can add CombineGRPC using Swift Package Manager by listing it as a dependenc

```swift
dependencies: [
.package(url: "https://github.com/vyshane/grpc-swift-combine.git", from: "0.12.0"),
.package(url: "https://github.com/vyshane/grpc-swift-combine.git", from: "0.13.0"),
],
```

Expand Down

0 comments on commit 186d27c

Please sign in to comment.