Skip to content

Commit e4104e8

Browse files
authored
* Bump maintenance branches to 3.3.7 (#1061)
Ruby 3.3.7 has been released: https://www.ruby-lang.org/en/news/2025/01/15/ruby-3-3-7-released/ Bump 3.3 branch from 3.3.6 to 3.3.7: ruby/ruby@v3_3_6...v3_3_7 There seems to be no change to the syntax.
1 parent 70ac244 commit e4104e8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
ruby: ["3.0.7", "3.1.6", "3.2.6", "3.3.6", "jruby-9.2"]
20+
ruby: ["3.0.7", "3.1.6", "3.2.6", "3.3.7", "jruby-9.2"]
2121
test_command: ["bundle exec rake test"]
2222
include:
2323
- ruby: "head"
@@ -26,7 +26,7 @@ jobs:
2626
test_command: "bundle exec rake test || true"
2727
- ruby: "3.2.6"
2828
test_command: "./ci/run_rubocop_specs || true"
29-
- ruby: "3.3.6"
29+
- ruby: "3.3.7"
3030
test_command: "./ci/run_rubocop_specs || true"
3131
steps:
3232
- uses: actions/checkout@v4

lib/parser/current.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def warn_syntax_deviation(feature, version)
111111
CurrentRuby = Ruby32
112112

113113
when /^3\.3\./
114-
current_version = '3.3.6'
114+
current_version = '3.3.7'
115115
if RUBY_VERSION != current_version
116116
warn_syntax_deviation 'parser/ruby33', current_version
117117
end

0 commit comments

Comments
 (0)