Skip to content

Commit c3991a9

Browse files
authoredJul 30, 2024··
Relax version specifier for 'google-protobuf' to fix build errors on Apple Silicon machines (#310)
* relax the version requirement for 'google-protobuf' to allow using newer 'grpc' gem * use major.minor to have min minor version requirement
1 parent 0c9a0c7 commit c3991a9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
source 'https://rubygems.org'
22

3-
gem 'google-protobuf', '~> 3.19.6'
3+
gem 'google-protobuf', '~> 3.19'
44

55
gemspec

‎examples/Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ gem 'temporal-ruby', path: '../'
44

55
gem 'dry-types', '>= 1.7.2'
66
gem 'dry-struct', '~> 1.6.0'
7-
gem 'google-protobuf', '~> 3.19.6'
7+
gem 'google-protobuf', '~> 3.19'
88

99
gem 'rspec', group: :test

0 commit comments

Comments
 (0)
Please sign in to comment.