Skip to content

Commit 4e20b37

Browse files
authored
* parser/current: add -dev prefix to 3.4 branch (#1067)
1 parent 237845b commit 4e20b37

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/test.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
ruby: ["3.1.6", "3.2.7", "3.3.7", "jruby-9.4"]
20+
ruby: ["3.1.6", "3.2.7", "3.3.7", "3.4.1", "jruby-9.4"]
2121
test_command: ["bundle exec rake test"]
2222
include:
2323
- ruby: "head"
@@ -28,6 +28,8 @@ jobs:
2828
test_command: "./ci/run_rubocop_specs || true"
2929
- ruby: "3.3.7"
3030
test_command: "./ci/run_rubocop_specs || true"
31+
- ruby: "3.4.1"
32+
test_command: "./ci/run_rubocop_specs || true"
3133
steps:
3234
- uses: actions/checkout@v4
3335
- name: Install Ragel

lib/parser/current.rb

+1-1
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.0-dev'
124124
if RUBY_VERSION != current_version
125125
warn_syntax_deviation 'parser/ruby34', current_version
126126
end

0 commit comments

Comments
 (0)