-
- Downloads
Merge pull request #8871 from muxi/advance-objc-version-v102
Advance objective c version to v1.0.2
No related branches found
No related tags found
Showing
- gRPC-Core.podspec 4 additions, 2 deletionsgRPC-Core.podspec
- gRPC-ProtoRPC.podspec 2 additions, 2 deletionsgRPC-ProtoRPC.podspec
- gRPC-RxLibrary.podspec 2 additions, 2 deletionsgRPC-RxLibrary.podspec
- gRPC.podspec 2 additions, 2 deletionsgRPC.podspec
- src/objective-c/!ProtoCompiler-gRPCPlugin.podspec 5 additions, 2 deletionssrc/objective-c/!ProtoCompiler-gRPCPlugin.podspec
- src/objective-c/GRPCClient/private/GRPCHost.m 1 addition, 1 deletionsrc/objective-c/GRPCClient/private/GRPCHost.m
- templates/gRPC-Core.podspec.template 4 additions, 2 deletionstemplates/gRPC-Core.podspec.template
... | ... | @@ -35,7 +35,7 @@ |
Pod::Spec.new do |s| | ||
s.name = 'gRPC-Core' | ||
version = '1.0.1' | ||
version = '1.0.2' | ||
s.version = version | ||
s.summary = 'Core cross-platform gRPC library, written in C' | ||
s.homepage = 'http://www.grpc.io' | ||
... | ... | @@ -44,7 +44,9 @@ Pod::Spec.new do |s| |
s.source = { | ||
:git => 'https://github.com/grpc/grpc.git', | ||
:tag => "v#{version}", | ||
# TODO(mxyan): Change back to "v#{version}" for next release | ||
#:tag => "v#{version}", | ||
:tag => "objective-c-v#{version}", | ||
# TODO(jcanizales): Depend explicitly on the nanopb pod, and disable submodules. | ||
:submodules => true, | ||
} | ||
... | ... |
... | ... | @@ -30,7 +30,7 @@ |
Pod::Spec.new do |s| | ||
s.name = 'gRPC-ProtoRPC' | ||
version = '1.0.1' | ||
version = '1.0.2' | ||
s.version = version | ||
s.summary = 'RPC library for Protocol Buffers, based on gRPC' | ||
s.homepage = 'http://www.grpc.io' | ||
... | ... | @@ -39,7 +39,7 @@ Pod::Spec.new do |s| |
s.source = { | ||
:git => 'https://github.com/grpc/grpc.git', | ||
:tag => "v#{version}", | ||
:tag => "objective-c-v#{version}", | ||
} | ||
s.ios.deployment_target = '7.1' | ||
... | ... |
... | ... | @@ -30,7 +30,7 @@ |
Pod::Spec.new do |s| | ||
s.name = 'gRPC-RxLibrary' | ||
version = '1.0.1' | ||
version = '1.0.2' | ||
s.version = version | ||
s.summary = 'Reactive Extensions library for iOS/OSX.' | ||
s.homepage = 'http://www.grpc.io' | ||
... | ... | @@ -39,7 +39,7 @@ Pod::Spec.new do |s| |
s.source = { | ||
:git => 'https://github.com/grpc/grpc.git', | ||
:tag => "v#{version}", | ||
:tag => "objective-c-v#{version}", | ||
} | ||
s.ios.deployment_target = '7.1' | ||
... | ... |
... | ... | @@ -30,7 +30,7 @@ |
Pod::Spec.new do |s| | ||
s.name = 'gRPC' | ||
version = '1.0.1' | ||
version = '1.0.2' | ||
s.version = version | ||
s.summary = 'gRPC client library for iOS/OSX' | ||
s.homepage = 'http://www.grpc.io' | ||
... | ... | @@ -39,7 +39,7 @@ Pod::Spec.new do |s| |
s.source = { | ||
:git => 'https://github.com/grpc/grpc.git', | ||
:tag => "v#{version}", | ||
:tag => "objective-c-v#{version}", | ||
} | ||
s.ios.deployment_target = '7.1' | ||
... | ... |
Please register or sign in to comment