Skip to content

Commit 0599797

Browse files
authored
Update gemspec file to require Ruby 3.0.0 (#513)
* Update gemspec file to require Ruby 3.0.0 Change-Id: I8388459a2bcdc7ef059c763936b3cb8d00bdc590 * Adding more detail to changelog Change-Id: Id378e8e09615019590bde0d610f89ce06872e4b3
1 parent a1d3d34 commit 0599797

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
33.1.0
22
-----
33
- Improved the logging format to include more information and increase human readability.
4+
- Update Ruby version in .gemspec file to require a minimum version of 3.0.0
45

56
33.0.0
67
------

google-ads-googleads.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Gem::Specification.new do |s|
3131
s.license = 'Apache-2.0'
3232
s.platform = Gem::Platform::RUBY
3333
s.require_paths = ['lib']
34-
s.required_ruby_version = '>= 2.5.0'
34+
s.required_ruby_version = '>= 3.0.0'
3535
s.summary = 'Google client library for the Google Ads API'
3636

3737
s.add_dependency 'gapic-common', ['>= 0.25', '< 1.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 = '33.0.0'.freeze
23+
CLIENT_LIB_VERSION = '33.1.0'.freeze
2424
VERSION = CLIENT_LIB_VERSION
2525
end
2626
end

0 commit comments

Comments
 (0)