Skip to content

Commit 690aee6

Browse files
author
Muxi Yan
committed
Automatedly advance ObjC version numbers
1 parent fa3b130 commit 690aee6

14 files changed

+589
-220
lines changed

gRPC-Core.podspec

Lines changed: 3 additions & 5 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.2'
38+
version = '1.1.0-dev'
3939
s.version = version
4040
s.summary = 'Core cross-platform gRPC library, written in C'
4141
s.homepage = 'http://www.grpc.io'
@@ -44,9 +44,7 @@ Pod::Spec.new do |s|
4444

4545
s.source = {
4646
:git => 'https://github.com/grpc/grpc.git',
47-
# TODO(mxyan): Change back to "v#{version}" for next release
48-
#:tag => "v#{version}",
49-
:tag => "objective-c-v#{version}",
47+
:tag => "v#{version}",
5048
# TODO(jcanizales): Depend explicitly on the nanopb pod, and disable submodules.
5149
:submodules => true,
5250
}
@@ -191,7 +189,7 @@ Pod::Spec.new do |s|
191189
ss.header_mappings_dir = '.'
192190
ss.libraries = 'z'
193191
ss.dependency "#{s.name}/Interface", version
194-
ss.dependency 'BoringSSL', '~> 7.0'
192+
ss.dependency 'BoringSSL', '~> 8.0'
195193

196194
# To save you from scrolling, this is the last part of the podspec.
197195
ss.source_files = 'src/core/lib/profiling/timers.h',

gRPC-ProtoRPC.podspec

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,9 @@
2727
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2828
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2929

30-
3130
Pod::Spec.new do |s|
3231
s.name = 'gRPC-ProtoRPC'
33-
version = '1.0.2'
32+
version = '1.1.0-dev'
3433
s.version = version
3534
s.summary = 'RPC library for Protocol Buffers, based on gRPC'
3635
s.homepage = 'http://www.grpc.io'
@@ -39,7 +38,7 @@ Pod::Spec.new do |s|
3938

4039
s.source = {
4140
:git => 'https://github.com/grpc/grpc.git',
42-
:tag => "objective-c-v#{version}",
41+
:tag => "v#{version}",
4342
}
4443

4544
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.2'
33+
version = '1.1.0-dev'
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 => "objective-c-v#{version}",
42+
:tag => "v#{version}",
4343
}
4444

4545
s.ios.deployment_target = '7.1'

gRPC.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'
33-
version = '1.0.2'
33+
version = '1.1.0-dev'
3434
s.version = version
3535
s.summary = 'gRPC client 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 => "objective-c-v#{version}",
42+
:tag => "v#{version}",
4343
}
4444

4545
s.ios.deployment_target = '7.1'

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

Lines changed: 2 additions & 5 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.2'
39+
v = '1.1.0-dev'
4040
s.version = v
4141
s.summary = 'The gRPC ProtoC plugin generates Objective-C files from .proto services.'
4242
s.description = <<-DESC
@@ -84,10 +84,7 @@ Pod::Spec.new do |s|
8484
repo = 'grpc/grpc'
8585
file = "grpc_objective_c_plugin-#{v}-macos-x86_64.zip"
8686
s.source = {
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}",
87+
:http => "https://github.com/#{repo}/releases/download/v#{v}/#{file}",
9188
# TODO(jcanizales): Add sha1 or sha256
9289
# :sha1 => '??',
9390
}

0 commit comments

Comments
 (0)