grpc-tools 1.37.1 → 1.39.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f1c56677cd5b4d44ec217315bf11b83e95f8b996e09ceb6b26fae88522251367
4
- data.tar.gz: cef83cc53ab6a6b7c3f96b4d4f04bf88f29faae063ce3b62556cac1734e796aa
3
+ metadata.gz: e8d707c3d74ee990fc930711bc0ae237a79cdeacf3154ac6157e3f5cd23ed29e
4
+ data.tar.gz: 283dbf6d8cd51b269ec72f6f9654f0a08d771c6fb08c9bb5f5efcd5ec853bc85
5
5
  SHA512:
6
- metadata.gz: 05afb411e8f858da50ece8afcd810c911dd5ca77307676b3ef6a60bf9ac4fa01de04a9d93b5c55c828448e9b92f18bc2c5effed39c3ae0ec0f5c9f66e7c63740
7
- data.tar.gz: d86b4ccd377ac750c065b102f8d14f1d9548c2ae3ac9f7e8c18f80e5f6e115f71f16a0e6f0e822cbcd4f32bc4d7d9cf919294dbfd06205c46d98b7f09c547493
6
+ metadata.gz: 31692491f73fc90aaae865b55ca8dac72e366b3a2942462ba3998bc50e3d5137869346500dd524444238b7f6a608089250dd79d63e537c9169551eccccb700df
7
+ data.tar.gz: 4e81f96fdd5d6d7a1cab22a770343a5db92210cd035393001bd9dcea016ec391614c2e9c087321c2ee71026939ab493fbca43a9cf3669b95c80d1b4e7f7ab557
Binary file
data/bin/x86-linux/protoc CHANGED
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
data/platform_check.rb CHANGED
@@ -29,7 +29,12 @@ module PLATFORM
29
29
  end
30
30
 
31
31
  def PLATFORM.architecture
32
- case RbConfig::CONFIG['host_cpu']
32
+ host_cpu = RbConfig::CONFIG['host_cpu']
33
+
34
+ # When we're on arm in macOS, we can rely on Rosetta and use the x86_64 binary
35
+ return 'x86_64' if RbConfig::CONFIG['host_os'] =~ /darwin/ && host_cpu =~ /arm/
36
+
37
+ case host_cpu
33
38
  when /x86_64/
34
39
  'x86_64'
35
40
  else
data/version.rb CHANGED
@@ -14,6 +14,6 @@
14
14
 
15
15
  module GRPC
16
16
  module Tools
17
- VERSION = '1.37.1'
17
+ VERSION = '1.39.0'
18
18
  end
19
19
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grpc-tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.37.1
4
+ version: 1.39.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - grpc Authors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-04-29 00:00:00.000000000 Z
11
+ date: 2021-07-21 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: protoc and the Ruby gRPC protoc plugin
14
14
  email: grpc-io@googlegroups.com