Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Update minimum Ruby version to 3.0 #527

Merged
merged 1 commit into from
Feb 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 0 additions & 25 deletions .github/sync-repo-settings.yaml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: "${{ matrix.ruby }}"
- name: Install NodeJS 16.x
- name: Install NodeJS 18.x
uses: actions/setup-node@v4
with:
node-version: "16.x"
node-version: "18.x"
- name: Install dependencies
shell: bash
run: |
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ gemspec
gem "fakefs", ">= 1.0", "< 4"
gem "fakeredis", "~> 0.5"
gem "gems", "~> 1.2"
gem "google-style", "~> 1.27.0"
gem "google-style", "~> 1.30.1"
gem "logging", "~> 2.0"
gem "minitest", "~> 5.14"
gem "minitest-focus", "~> 1.1"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ Custom storage implementations can also be used. See

## Supported Ruby Versions

This library is supported on Ruby 2.6+.
This library is supported on Ruby 3.0+.

Google provides official support for Ruby versions that are actively supported
by Ruby Core—that is, Ruby versions that are either in normal maintenance or
Expand Down
6 changes: 3 additions & 3 deletions googleauth.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ Gem::Specification.new do |gem|
gem.name = "googleauth"
gem.version = Google::Auth::VERSION

gem.authors = ["Tim Emiola"]
gem.email = ["temiola@google.com"]
gem.authors = ["Google LLC"]
gem.email = ["googleapis-packages@google.com"]
gem.summary = "Google Auth Library for Ruby"
gem.description = "Implements simple authorization for accessing Google APIs, and provides support for " \
"Application Default Credentials."
Expand All @@ -20,7 +20,7 @@ Gem::Specification.new do |gem|
gem.require_paths = ["lib"]

gem.platform = Gem::Platform::RUBY
gem.required_ruby_version = ">= 2.7"
gem.required_ruby_version = ">= 3.0"

gem.add_dependency "faraday", ">= 1.0", "< 3.a"
gem.add_dependency "google-cloud-env", "~> 2.2"
Expand Down
Loading