Skip to content
Merged
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
16 changes: 8 additions & 8 deletions Package.resolved

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

10 changes: 5 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,19 @@ let package = Package(
dependencies: [
// GRPC dependencies:
// Main SwiftNIO package
.package(url: "https://github.com/apple/swift-nio.git", from: "2.14.0"),
.package(url: "https://github.com/apple/swift-nio.git", from: "2.18.0"),
// HTTP2 via SwiftNIO
.package(url: "https://github.com/apple/swift-nio-http2.git", from: "1.12.1"),
// TLS via SwiftNIO
.package(url: "https://github.com/apple/swift-nio-ssl.git", from: "2.6.2"),
.package(url: "https://github.com/apple/swift-nio-ssl.git", from: "2.7.4"),
// Support for Network.framework where possible.
.package(url: "https://github.com/apple/swift-nio-transport-services.git", from: "1.3.0"),
.package(url: "https://github.com/apple/swift-nio-transport-services.git", from: "1.6.0"),

// Official SwiftProtobuf library, for [de]serializing data to send on the wire.
.package(url: "https://github.com/apple/swift-protobuf.git", from: "1.8.0"),
.package(url: "https://github.com/apple/swift-protobuf.git", from: "1.9.0"),

// Logging API.
.package(url: "https://github.com/apple/swift-log.git", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-log.git", from: "1.2.0"),
],
targets: [
// The main GRPC module.
Expand Down
12 changes: 6 additions & 6 deletions gRPC-Swift.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Pod::Spec.new do |s|

s.name = 'gRPC-Swift'
s.module_name = 'GRPC'
s.version = '1.0.0-alpha.12'
s.version = '1.0.0-alpha.13'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.summary = 'Swift gRPC code generator plugin and runtime library'
s.homepage = 'https://www.grpc.io'
Expand All @@ -17,11 +17,11 @@ Pod::Spec.new do |s|
s.source_files = 'Sources/GRPC/**/*.{swift,c,h}'

s.dependency 'Logging', '1.2.0'
s.dependency 'SwiftNIO', '2.15.0'
s.dependency 'SwiftNIOHTTP2', '1.11.0'
s.dependency 'SwiftNIOSSL', '2.7.1'
s.dependency 'SwiftNIOTransportServices', '1.3.0'
s.dependency 'SwiftProtobuf', '1.8.0'
s.dependency 'SwiftNIO', '2.18.0'
s.dependency 'SwiftNIOHTTP2', '1.12.1'
s.dependency 'SwiftNIOSSL', '2.7.4'
s.dependency 'SwiftNIOTransportServices', '1.6.0'
s.dependency 'SwiftProtobuf', '1.9.0'
s.dependency 'CGRPCZlib', s.version.to_s

end