Skip to content

Commit 8e8f981

Browse files
committed
* Bump maintenance branches to 3.2.6
Closes #1043. Ruby 3.2.6 has been released: https://www.ruby-lang.org/en/news/2024/10/30/ruby-3-2-6-released/ Bump 3.2 branch from 3.2.5 to 3.2.6: ruby/ruby@v3_2_5...v3_2_6 There seems to be no change to the syntax.
1 parent 90e0a4e commit 8e8f981

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
ruby: ["3.0.7", "3.1.6", "3.2.5", "3.3.5", "jruby-9.2"]
20+
ruby: ["3.0.7", "3.1.6", "3.2.6", "3.3.5", "jruby-9.2"]
2121
test_command: ["bundle exec rake test"]
2222
include:
2323
- ruby: "head"
2424
test_command: "bundle exec rake test || true"
2525
- ruby: "truffleruby"
2626
test_command: "bundle exec rake test || true"
27-
- ruby: "3.2.5"
27+
- ruby: "3.2.6"
2828
test_command: "./ci/run_rubocop_specs || true"
2929
- ruby: "3.3.5"
3030
test_command: "./ci/run_rubocop_specs || true"

lib/parser/current.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def warn_syntax_deviation(feature, version)
102102
CurrentRuby = Ruby31
103103

104104
when /^3\.2\./
105-
current_version = '3.2.5'
105+
current_version = '3.2.6'
106106
if RUBY_VERSION != current_version
107107
warn_syntax_deviation 'parser/ruby32', current_version
108108
end

0 commit comments

Comments
 (0)