Skip to content

Commit

Permalink
DROP ruby 3.0 support
Browse files Browse the repository at this point in the history
Ruby 3.0 reach End Of Life on 2024-04-23.
  • Loading branch information
MaximeD committed Dec 26, 2024
1 parent 3642954 commit 4d92b7b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['3.0', '3.1', '3.2', '3.3']
ruby: ['3.1', '3.2', '3.3']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby }}
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ require: rubocop-performance

AllCops:
NewCops: enable
TargetRubyVersion: 3.0
TargetRubyVersion: 3.1

Gemspec/DevelopmentDependencies:
Enabled: false
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# master (unreleased)

Deprecated:
* ruby 3.1 is the minimum required ruby version

Updates:
* gems

Expand Down
2 changes: 1 addition & 1 deletion gem_updater.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Gem::Specification.new do |s|
'rubygems_mfa_required' => 'true'
}

s.required_ruby_version = '>= 3.0.0'
s.required_ruby_version = '>= 3.1'

s.add_dependency 'bundler', '< 3'
s.add_dependency 'json', '~> 2.6'
Expand Down

0 comments on commit 4d92b7b

Please sign in to comment.