Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 19 additions & 10 deletions Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ let package = Package(
.package(
name: "grpc-swift",
url: "https://github.com/grpc/grpc-swift.git",
.exact("1.0.0-alpha.19")
.exact("1.5.0")
)
],
targets: [
Expand Down
2 changes: 1 addition & 1 deletion Sources/GRPCClient/StreamingError.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import class GRPC.GRPCStatus
import struct GRPC.GRPCStatus

public enum StreamingError: Error {
case callCreationError(Error)
Expand Down
4 changes: 2 additions & 2 deletions gRPC-Client-Swift.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'gRPC-Client-Swift'
s.version = '1.0.0-alpha.8'
s.version = '1.0.0'
s.swift_version = '5.0'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'Client-side library that depends on SwiftGRPC which is a library of gRPC written in Swift.'
Expand All @@ -13,5 +13,5 @@ Pod::Spec.new do |s|
s.osx.deployment_target = '10.12'
s.source_files = 'Sources/GRPCClient/**/*.{h,swift}'
s.module_name = 'GRPCClient'
s.dependency 'gRPC-Swift', '1.0.0-alpha.19'
s.dependency 'gRPC-Swift', '1.5.0'
end