Bump version for latest swift version (#6121)

This commit is contained in:
mustiikhalil 2020-09-17 22:28:42 +03:00 committed by GitHub
parent 94873e595c
commit e1be8aaadd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 6 deletions

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FlatBuffers'
s.version = '0.7.1'
s.version = '0.8.0'
s.summary = 'FlatBuffers: Memory Efficient Serialization Library'
s.description = "FlatBuffers is a cross platform serialization library architected for

View File

@ -10,9 +10,8 @@ let package = Package(
.macOS(.v10_14),
],
dependencies: [
// Main SwiftNIO package
.package(path: "../../swift"),
.package(url: "https://github.com/grpc/grpc-swift.git", from: "1.0.0-alpha.17")
.package(url: "https://github.com/grpc/grpc-swift.git", from: "1.0.0-alpha.19")
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
@ -26,7 +25,7 @@ let package = Package(
path: "Sources/Model"
),
// Client for the HelloWorld example
// Client for the Greeter example
.target(
name: "Client",
dependencies: [
@ -36,7 +35,7 @@ let package = Package(
path: "Sources/client"
),
// Server for the HelloWorld example
// Server for the Greeter example
.target(
name: "Server",
dependencies: [

View File

@ -11,7 +11,7 @@ let package = Package(
],
dependencies: [
.package(path: "../../swift/"),
.package(url: "https://github.com/grpc/grpc-swift.git", from: "1.0.0-alpha.18")
.package(url: "https://github.com/grpc/grpc-swift.git", from: "1.0.0-alpha.19")
],
targets: [
.target(name: "SwiftFlatBuffers"),