Skip to content

Commit

Permalink
* bump 3.4 branch, remove 3.0 from CI (EOL)
Browse files Browse the repository at this point in the history
  • Loading branch information
iliabylich committed Jan 4, 2025
1 parent d230989 commit 0c49448
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .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.0.7", "3.1.6", "3.2.6", "3.3.6", "jruby-9.2"]
ruby: ["3.1.6", "3.2.6", "3.3.6", "3.4.1", "jruby-9.2"]
test_command: ["bundle exec rake test"]
include:
- ruby: "head"
Expand Down
6 changes: 3 additions & 3 deletions lib/parser/current.rb
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def warn_syntax_deviation(feature, version)
CurrentRuby = Ruby33

when /^3\.4\./
current_version = '3.4.0'
current_version = '3.4.1'
if RUBY_VERSION != current_version
warn_syntax_deviation 'parser/ruby34', current_version
end
Expand All @@ -130,8 +130,8 @@ def warn_syntax_deviation(feature, version)

else # :nocov:
# Keep this in sync with released Ruby.
warn_syntax_deviation 'parser/ruby33', '3.3.x'
require_relative 'ruby33'
warn_syntax_deviation 'parser/ruby34', '3.4.x'
require_relative 'ruby34'
CurrentRuby = Ruby33
end
end

0 comments on commit 0c49448

Please sign in to comment.