Merge pull request #8480 from muxi/finalize-release-v1.0.1-pre1

Protobuf versioning in v1.0.1-pre1
pull/8496/head v1.0.1-pre1
Muxi Yan 8 years ago committed by GitHub
commit 408fc22c70
  1. 6
      src/objective-c/!ProtoCompiler-gRPCPlugin.podspec
  2. 2
      src/objective-c/!ProtoCompiler.podspec

@ -84,7 +84,9 @@ Pod::Spec.new do |s|
repo = 'grpc/grpc'
file = "grpc_objective_c_plugin-#{v}-macos-x86_64.zip"
s.source = {
:http => "https://github.com/#{repo}/releases/download/v#{v}/#{file}",
# TODO(mxyan): Reverse this change when v1.0.1 is released
# :http => "https://github.com/#{repo}/releases/download/v#{v}/#{file}",
:http => "https://github.com/grpc/grpc/releases/download/v1.0.0/grpc_objective_c_plugin-1.0.0-macos-x86_64.zip"
# TODO(jcanizales): Add sha1 or sha256
# :sha1 => '??',
}
@ -95,7 +97,7 @@ Pod::Spec.new do |s|
s.preserve_paths = plugin
# Restrict the protoc version to the one supported by this plugin.
s.dependency '!ProtoCompiler', '3.0.0'
s.dependency '!ProtoCompiler', '3.0.2'
# For the Protobuf dependency not to complain:
s.ios.deployment_target = '7.1'
s.osx.deployment_target = '10.9'

@ -36,7 +36,7 @@ Pod::Spec.new do |s|
# exclamation mark ensures that other "regular" pods will be able to find it as it'll be installed
# before them.
s.name = '!ProtoCompiler'
v = '3.0.0'
v = '3.0.2'
s.version = v
s.summary = 'The Protobuf Compiler (protoc) generates Objective-C files from .proto files'
s.description = <<-DESC

Loading…
Cancel
Save