Skip to content

Commit

Permalink
* Bump parser branches to 3.0.7, 3.1.5, 3.2.4, 3.3.1 (#1011)
Browse files Browse the repository at this point in the history
  • Loading branch information
iliabylich committed Apr 26, 2024
1 parent 8af86b0 commit 31faa0a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Expand Up @@ -17,16 +17,16 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["3.0.6", "3.1.4", "3.2.3", "3.3.0", "jruby-9.2"]
ruby: ["3.0.7", "3.1.5", "3.2.4", "3.3.1", "jruby-9.2"]
test_command: ["bundle exec rake test"]
include:
- ruby: "head"
test_command: "bundle exec rake test || true"
- ruby: "truffleruby"
test_command: "bundle exec rake test || true"
- ruby: "3.2.3"
- ruby: "3.2.4"
test_command: "./ci/run_rubocop_specs || true"
- ruby: "3.3.0"
- ruby: "3.3.1"
test_command: "./ci/run_rubocop_specs || true"
steps:
- uses: actions/checkout@v3
Expand Down
8 changes: 4 additions & 4 deletions lib/parser/current.rb
Expand Up @@ -84,7 +84,7 @@ def warn_syntax_deviation(feature, version)
CurrentRuby = Ruby27

when /^3\.0\./
current_version = '3.0.6'
current_version = '3.0.7'
if RUBY_VERSION != current_version
warn_syntax_deviation 'parser/ruby30', current_version
end
Expand All @@ -93,7 +93,7 @@ def warn_syntax_deviation(feature, version)
CurrentRuby = Ruby30

when /^3\.1\./
current_version = '3.1.4'
current_version = '3.1.5'
if RUBY_VERSION != current_version
warn_syntax_deviation 'parser/ruby31', current_version
end
Expand All @@ -102,7 +102,7 @@ def warn_syntax_deviation(feature, version)
CurrentRuby = Ruby31

when /^3\.2\./
current_version = '3.2.3'
current_version = '3.2.4'
if RUBY_VERSION != current_version
warn_syntax_deviation 'parser/ruby32', current_version
end
Expand All @@ -111,7 +111,7 @@ def warn_syntax_deviation(feature, version)
CurrentRuby = Ruby32

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

0 comments on commit 31faa0a

Please sign in to comment.