diff options
author | Craig Tiller <ctiller@google.com> | 2015-10-02 13:59:37 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-10-02 13:59:37 -0700 |
commit | a880342e2c2dc0fc19a221a941f3fce31b972863 (patch) | |
tree | 6bbc7502c91ea7a85813fcb5d1073d7e4a8a2550 /templates | |
parent | 58d05a63dfb9355d707c3f7c4da781f4071efc60 (diff) | |
parent | 25061413cf979f7dfed9f3cd63a08450d64f96ba (diff) |
Merge github.com:grpc/grpc into stressy
Diffstat (limited to 'templates')
-rw-r--r-- | templates/gRPC.podspec.template | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/templates/gRPC.podspec.template b/templates/gRPC.podspec.template index b1de0d7102..d1b55adabf 100644 --- a/templates/gRPC.podspec.template +++ b/templates/gRPC.podspec.template @@ -63,14 +63,16 @@ %> Pod::Spec.new do |s| s.name = 'gRPC' - s.version = '0.11.0' + version = '0.11.1' + s.version = version s.summary = 'gRPC client library for iOS/OSX' s.homepage = 'http://www.grpc.io' s.license = 'New BSD' s.authors = { 'The gRPC contributors' => 'grpc-packages@google.com' } - - # s.source = { :git => 'https://github.com/grpc/grpc.git', - # :tag => 'release-0_11_0-objectivec-0.11.0' } + + s.source = { :git => 'https://github.com/grpc/grpc.git', + :tag => "release-#{version.gsub(/\./, '_')}-objectivec-#{version}" } + s.ios.deployment_target = '7.1' s.osx.deployment_target = '10.9' |