Skip to content

Commit 03c0e25

Browse files
authored
Merge pull request #2596 from ruby/drop-ruby-3.1
Bye ruby-3.1
2 parents c56c6d8 + ee8b5b5 commit 03c0e25

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ruby.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
ruby: ['3.1', '3.2', '3.3', '3.4', head]
16+
ruby: ['3.2', '3.3', '3.4', head]
1717
rubyopt: [""]
1818
job:
1919
- test

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins:
33
- rubocop-on-rbs
44

55
AllCops:
6-
TargetRubyVersion: 3.1
6+
TargetRubyVersion: 3.4
77
DisabledByDefault: true
88
Exclude:
99
- 'vendor/bundle/**/*'

rbs.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ Gem::Specification.new do |spec|
3838
spec.extensions = %w{ext/rbs_extension/extconf.rb}
3939

4040
if false
41-
spec.required_ruby_version = ">= 3.3"
41+
spec.required_ruby_version = ">= 3.4"
4242
end
4343

4444
spec.bindir = "exe"
4545
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
4646
spec.require_paths = ["lib"]
47-
spec.required_ruby_version = ">= 3.1"
47+
spec.required_ruby_version = ">= 3.2"
4848
spec.add_dependency "logger"
4949
spec.add_dependency "prism", ">= 1.3.0"
5050
end

0 commit comments

Comments
 (0)