Skip to content

Commit a641ed1

Browse files
committed
Allow grpc 1.74.1 and beyond
Change-Id: I244274f9faaee350f4d2cddee9e8ef39c6da5013
1 parent fd6d533 commit a641ed1

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
35.2.0
2+
-----
3+
- Made grpc versioning more permissive to allow any version except 1.74.0.
4+
15
35.1.0
26
-----
37
- Made grpc versioning more permissive.

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ gem 'google-adwords-api', '~> 1.5'
1010
# used for the factories generator
1111
gem 'activesupport', '~> 7.1'
1212
gem 'rspec', '~> 3.6'
13-
gem 'standard', ">= 1.35.1"
13+
gem 'standard', '>= 1.35.1'
1414
gem 'benchmark-ips'
1515
gem 'yard'
1616
gem 'rubocop', require: false
1717
gem 'rubocop-google_ads', require: false
18-
gem 'grpc', '<= 1.73.0'
18+
gem 'grpc', ['~> 1.0', '!= 1.74.0']

lib/google/ads/google_ads/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module Google
2020
module Ads
2121
module GoogleAds
2222
CLIENT_LIB_NAME = 'gccl'.freeze
23-
CLIENT_LIB_VERSION = '35.1.0'.freeze
23+
CLIENT_LIB_VERSION = '35.2.0'.freeze
2424
VERSION = CLIENT_LIB_VERSION
2525
end
2626
end

0 commit comments

Comments
 (0)