From 04b1b3baf6ac89283f7fd99af5eb3f3bc05c4054 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Wed, 14 Jan 2026 11:35:26 +0900 Subject: [PATCH] * Bump maintenance branches to 3.2.10 Ruby 3.2.10 has been released: https://www.ruby-lang.org/en/news/2026/01/14/ruby-3-2-10-released/ Bump 3.2 branch from 3.2.9 to 3.2.10: https://github.com/ruby/ruby/compare/v3_2_9...v3_2_10 There seems to be no change to syntax. --- .github/workflows/test.yml | 2 +- lib/parser/current.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 272c24266..b82cb0c06 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - ruby: ["3.1.7", "3.2.9", "3.3.10", "3.4.1", "jruby-9.4"] + ruby: ["3.1.7", "3.2.10", "3.3.10", "3.4.1", "jruby-9.4"] test_command: ["bundle exec rake test"] include: - ruby: "head" diff --git a/lib/parser/current.rb b/lib/parser/current.rb index 20f10979c..e4e149d92 100644 --- a/lib/parser/current.rb +++ b/lib/parser/current.rb @@ -102,7 +102,7 @@ def warn_syntax_deviation(feature, version) CurrentRuby = Ruby31 when /^3\.2\./ - current_version = '3.2.9' + current_version = '3.2.10' if RUBY_VERSION != current_version warn_syntax_deviation 'parser/ruby32', current_version end