Skip to content

Commit

Permalink
* parser/current: add -dev prefix to 3.4 branch (#1067)
Browse files Browse the repository at this point in the history
  • Loading branch information
iliabylich authored Feb 5, 2025
1 parent 237845b commit 4e20b37
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 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.1.6", "3.2.7", "3.3.7", "jruby-9.4"]
ruby: ["3.1.6", "3.2.7", "3.3.7", "3.4.1", "jruby-9.4"]
test_command: ["bundle exec rake test"]
include:
- ruby: "head"
Expand All @@ -28,6 +28,8 @@ jobs:
test_command: "./ci/run_rubocop_specs || true"
- ruby: "3.3.7"
test_command: "./ci/run_rubocop_specs || true"
- ruby: "3.4.1"
test_command: "./ci/run_rubocop_specs || true"
steps:
- uses: actions/checkout@v4
- name: Install Ragel
Expand Down
2 changes: 1 addition & 1 deletion 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.0-dev'
if RUBY_VERSION != current_version
warn_syntax_deviation 'parser/ruby34', current_version
end
Expand Down

0 comments on commit 4e20b37

Please sign in to comment.