Skip to content

Commit 3d89cb4

Browse files
authored
* bump 3.4 branch, remove 3.0 from CI (EOL) (#1057)
1 parent d230989 commit 3d89cb4

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ 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"
2424
test_command: "bundle exec rake test || true"
2525
- ruby: "truffleruby"
2626
test_command: "bundle exec rake test || true"
27-
- ruby: "3.2.6"
28-
test_command: "./ci/run_rubocop_specs || true"
2927
- ruby: "3.3.6"
3028
test_command: "./ci/run_rubocop_specs || true"
29+
- ruby: "3.4.1"
30+
test_command: "./ci/run_rubocop_specs || true"
3131
steps:
3232
- uses: actions/checkout@v4
3333
- name: Install Ragel

lib/parser/current.rb

+4-4
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'
135-
CurrentRuby = Ruby33
133+
warn_syntax_deviation 'parser/ruby34', '3.4.x'
134+
require_relative 'ruby34'
135+
CurrentRuby = Ruby34
136136
end
137137
end

0 commit comments

Comments
 (0)