Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["3.1.7", "3.2.9", "3.3.9", "3.4.1", "jruby-9.4"]
ruby: ["3.1.7", "3.2.9", "3.3.10", "3.4.1", "jruby-9.4"]
test_command: ["bundle exec rake test"]
include:
- ruby: "head"
Expand All @@ -26,7 +26,7 @@ jobs:
test_command: "bundle exec rake test || true"
- ruby: "3.2.9"
test_command: "./ci/run_rubocop_specs || true"
- ruby: "3.3.9"
- ruby: "3.3.10"
test_command: "./ci/run_rubocop_specs || true"
- ruby: "3.4.1"
test_command: "./ci/run_rubocop_specs || true"
Expand Down
2 changes: 1 addition & 1 deletion lib/parser/current.rb
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def warn_syntax_deviation(feature, version)
CurrentRuby = Ruby32

when /^3\.3\./
current_version = '3.3.9'
current_version = '3.3.10'
if RUBY_VERSION != current_version
warn_syntax_deviation 'parser/ruby33', current_version
end
Expand Down