Skip to content

Commit 0c49448

Browse files
committed
* bump 3.4 branch, remove 3.0 from CI (EOL)
1 parent d230989 commit 0c49448

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
ruby: ["3.0.7", "3.1.6", "3.2.6", "3.3.6", "jruby-9.2"]
20+
ruby: ["3.1.6", "3.2.6", "3.3.6", "3.4.1", "jruby-9.2"]
2121
test_command: ["bundle exec rake test"]
2222
include:
2323
- ruby: "head"

lib/parser/current.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def warn_syntax_deviation(feature, version)
120120
CurrentRuby = Ruby33
121121

122122
when /^3\.4\./
123-
current_version = '3.4.0'
123+
current_version = '3.4.1'
124124
if RUBY_VERSION != current_version
125125
warn_syntax_deviation 'parser/ruby34', current_version
126126
end
@@ -130,8 +130,8 @@ def warn_syntax_deviation(feature, version)
130130

131131
else # :nocov:
132132
# Keep this in sync with released Ruby.
133-
warn_syntax_deviation 'parser/ruby33', '3.3.x'
134-
require_relative 'ruby33'
133+
warn_syntax_deviation 'parser/ruby34', '3.4.x'
134+
require_relative 'ruby34'
135135
CurrentRuby = Ruby33
136136
end
137137
end

0 commit comments

Comments
 (0)