From 40a515c5c1b1e49f477d02de9366e0ae2b891b27 Mon Sep 17 00:00:00 2001 From: Ilya Bylich Date: Wed, 7 Aug 2024 19:49:00 +0200 Subject: [PATCH] * Bump 3.2 branch to 3.2.5. (#1036) --- .github/workflows/test.yml | 4 ++-- lib/parser/current.rb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 957189a2a..33a47b0cc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,14 +17,14 @@ jobs: strategy: fail-fast: false matrix: - ruby: ["3.0.7", "3.1.6", "3.2.4", "3.3.4", "jruby-9.2"] + ruby: ["3.0.7", "3.1.6", "3.2.5", "3.3.4", "jruby-9.2"] test_command: ["bundle exec rake test"] include: - ruby: "head" test_command: "bundle exec rake test || true" - ruby: "truffleruby" test_command: "bundle exec rake test || true" - - ruby: "3.2.4" + - ruby: "3.2.5" test_command: "./ci/run_rubocop_specs || true" - ruby: "3.3.4" test_command: "./ci/run_rubocop_specs || true" diff --git a/lib/parser/current.rb b/lib/parser/current.rb index e425f1668..05f05eaed 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.4' + current_version = '3.2.5' if RUBY_VERSION != current_version warn_syntax_deviation 'parser/ruby32', current_version end