From a3a2e48ad29dcbf8cbbba47b9438c22c5671b84d Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Tue, 3 Sep 2024 16:55:26 +0900 Subject: [PATCH] * Bump maintenance branches to 3.3.5 Ruby 3.3.5 has been released: https://www.ruby-lang.org/en/news/2024/09/03/3-3-5-released/ Bump 3.3 branch from 3.3.4 to 3.3.5: https://github.com/ruby/ruby/compare/v3_3_4...v3_3_5 There seems to be no change to the syntax. --- .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 33a47b0cc..817ead073 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - ruby: ["3.0.7", "3.1.6", "3.2.5", "3.3.4", "jruby-9.2"] + ruby: ["3.0.7", "3.1.6", "3.2.5", "3.3.5", "jruby-9.2"] test_command: ["bundle exec rake test"] include: - ruby: "head" @@ -26,7 +26,7 @@ jobs: test_command: "bundle exec rake test || true" - ruby: "3.2.5" test_command: "./ci/run_rubocop_specs || true" - - ruby: "3.3.4" + - ruby: "3.3.5" test_command: "./ci/run_rubocop_specs || true" steps: - uses: actions/checkout@v4 diff --git a/lib/parser/current.rb b/lib/parser/current.rb index 05f05eaed..d05220aa2 100644 --- a/lib/parser/current.rb +++ b/lib/parser/current.rb @@ -111,7 +111,7 @@ def warn_syntax_deviation(feature, version) CurrentRuby = Ruby32 when /^3\.3\./ - current_version = '3.3.4' + current_version = '3.3.5' if RUBY_VERSION != current_version warn_syntax_deviation 'parser/ruby33', current_version end