Skip to content

Updated Dependencies to use latest #828

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 10, 2020
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
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"repositoryURL": "https://github.com/apple/swift-nio.git",
"state": {
"branch": null,
"revision": "a27a07719ca785bcaca019a5b9fe1814b981b4a2",
"version": "2.15.0"
"revision": "120acb15c39aa3217e9888e515de160378fbcc1e",
"version": "2.18.0"
}
},
{
Expand All @@ -33,26 +33,26 @@
"repositoryURL": "https://github.com/apple/swift-nio-ssl.git",
"state": {
"branch": null,
"revision": "ae213938e151964aa691f0e902462fbe06baeeb6",
"version": "2.7.1"
"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": "c7f06384dc5ce7e8506de5ed9b59e35b4d88c64b",
"version": "1.3.0"
"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
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