Skip to content

Commit a7f03f6

Browse files
author
Muxi Yan
committed
Advance objective c version to v1.0.2
1 parent dc2111e commit a7f03f6

File tree

7 files changed

+19
-12
lines changed

7 files changed

+19
-12
lines changed

gRPC-Core.podspec

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
Pod::Spec.new do |s|
3737
s.name = 'gRPC-Core'
38-
version = '1.0.1'
38+
version = '1.0.2'
3939
s.version = version
4040
s.summary = 'Core cross-platform gRPC library, written in C'
4141
s.homepage = 'http://www.grpc.io'
@@ -44,7 +44,9 @@ Pod::Spec.new do |s|
4444

4545
s.source = {
4646
:git => 'https://github.com/grpc/grpc.git',
47-
:tag => "v#{version}",
47+
# TODO(mxyan): Change back to "v#{version}" for next release
48+
#:tag => "v#{version}",
49+
:tag => "objective-c-v#{version}",
4850
# TODO(jcanizales): Depend explicitly on the nanopb pod, and disable submodules.
4951
:submodules => true,
5052
}

gRPC-ProtoRPC.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
Pod::Spec.new do |s|
3232
s.name = 'gRPC-ProtoRPC'
33-
version = '1.0.1'
33+
version = '1.0.2'
3434
s.version = version
3535
s.summary = 'RPC library for Protocol Buffers, based on gRPC'
3636
s.homepage = 'http://www.grpc.io'
@@ -39,7 +39,7 @@ Pod::Spec.new do |s|
3939

4040
s.source = {
4141
:git => 'https://github.com/grpc/grpc.git',
42-
:tag => "v#{version}",
42+
:tag => "objective-c-v#{version}",
4343
}
4444

4545
s.ios.deployment_target = '7.1'

gRPC-RxLibrary.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
Pod::Spec.new do |s|
3232
s.name = 'gRPC-RxLibrary'
33-
version = '1.0.1'
33+
version = '1.0.2'
3434
s.version = version
3535
s.summary = 'Reactive Extensions library for iOS/OSX.'
3636
s.homepage = 'http://www.grpc.io'
@@ -39,7 +39,7 @@ Pod::Spec.new do |s|
3939

4040
s.source = {
4141
:git => 'https://github.com/grpc/grpc.git',
42-
:tag => "v#{version}",
42+
:tag => "objective-c-v#{version}",
4343
}
4444

4545
s.ios.deployment_target = '7.1'

gRPC.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
Pod::Spec.new do |s|
3232
s.name = 'gRPC'
33-
version = '1.0.1'
33+
version = '1.0.2'
3434
s.version = version
3535
s.summary = 'gRPC client library for iOS/OSX'
3636
s.homepage = 'http://www.grpc.io'

src/objective-c/!ProtoCompiler-gRPCPlugin.podspec

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Pod::Spec.new do |s|
3636
# exclamation mark ensures that other "regular" pods will be able to find it as it'll be installed
3737
# before them.
3838
s.name = '!ProtoCompiler-gRPCPlugin'
39-
v = '1.0.1'
39+
v = '1.0.2'
4040
s.version = v
4141
s.summary = 'The gRPC ProtoC plugin generates Objective-C files from .proto services.'
4242
s.description = <<-DESC
@@ -84,7 +84,10 @@ Pod::Spec.new do |s|
8484
repo = 'grpc/grpc'
8585
file = "grpc_objective_c_plugin-#{v}-macos-x86_64.zip"
8686
s.source = {
87-
:http => "https://github.com/#{repo}/releases/download/v#{v}/#{file}",
87+
# TODO(mxyan): Change back to "https://github.com/#{repo}/releases/download/v#{v}/#{file}" for
88+
# next release
89+
# :http => "https://github.com/#{repo}/releases/download/v#{v}/#{file}",
90+
:http => "https://github.com/#{repo}/releases/download/objective-c-v#{v}/#{file}",
8891
# TODO(jcanizales): Add sha1 or sha256
8992
# :sha1 => '??',
9093
}

src/objective-c/GRPCClient/private/GRPCHost.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949

5050
// TODO(jcanizales): Generate the version in a standalone header, from templates. Like
5151
// templates/src/core/surface/version.c.template .
52-
#define GRPC_OBJC_VERSION_STRING @"1.0.1"
52+
#define GRPC_OBJC_VERSION_STRING @"1.0.2"
5353

5454
static NSMutableDictionary *kHostCache;
5555

templates/gRPC-Core.podspec.template

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
%>
6363
Pod::Spec.new do |s|
6464
s.name = 'gRPC-Core'
65-
version = '1.0.1'
65+
version = '1.0.2'
6666
s.version = version
6767
s.summary = 'Core cross-platform gRPC library, written in C'
6868
s.homepage = 'http://www.grpc.io'
@@ -71,7 +71,9 @@
7171

7272
s.source = {
7373
:git => 'https://github.com/grpc/grpc.git',
74-
:tag => "v#{version}",
74+
# TODO(mxyan): Change back to "v#{version}" for next release
75+
#:tag => "v#{version}",
76+
:tag => "objective-c-v#{version}",
7577
# TODO(jcanizales): Depend explicitly on the nanopb pod, and disable submodules.
7678
:submodules => true,
7779
}

0 commit comments

Comments
 (0)