grpc-tools 1.37.0.pre1 → 1.39.0.pre1

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: b8649a406affa6b5cf56f3079a3f7bfec1fa2a9875f4c489bd3f51276eb47727
4
- data.tar.gz: b4984bd524811840f8d455994f45a07a4804ef5afb0893bae0dd1a2c9a17951d
3
+ metadata.gz: 6e1d25c53eab5a7ffb3c80d61fe1b6bfcb209616560ea551a381a27b3b36b1b8
4
+ data.tar.gz: 335de3236e6d88a6b1dd4dedca9e69355bde60a757421b641499496860ca7cd9
5
5
  SHA512:
6
- metadata.gz: 246394aef14c8a6dd95c7f5c9074d452a7a2ee5befb0829cd401c5c2102831cc2eadbcd651e5682138832884ee68a2fa2d110c15a0512dccb25ab4f3aeb787b2
7
- data.tar.gz: 803f4454a936196713c5ad721fe31e7316e3f16398e065f2b94980251dac16425fcaae15df930fefec8613ef006c35d87e28306caa34112114acc055b7f4dcb2
6
+ metadata.gz: c2624d370aadf40ab95507b39851872313af3a48ff4938478cb9b21e1d37a594440263e56d0d759fd7bca693f1fe0dbea84b00e94c443ec942359f63532dc686
7
+ data.tar.gz: 8e92cc543fb8a2210c23200e6f3e3042b8fd5948003178f42f05e781fd6362d59619e9a8e9e6ddc62890bdb25ce3cb52a3f502a1b0093434dffc16c9cf981ee4
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.0.pre1'
17
+ VERSION = '1.39.0.pre1'
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.0.pre1
4
+ version: 1.39.0.pre1
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-03-30 00:00:00.000000000 Z
11
+ date: 2021-07-02 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