From 24c5cd46cc4e9855bc8978b703b6cb63536ad60a Mon Sep 17 00:00:00 2001 From: Carlos Antonio da Silva Date: Tue, 5 Mar 2024 16:34:16 -0300 Subject: [PATCH] Add support to Ruby 3.3 (no changes required) Exclude previous Ruby versions from running against Rails main, since it only supports Ruby 3.1+ now. --- .github/workflows/test.yml | 9 +++++++++ CHANGELOG.md | 4 ++++ 2 files changed, 13 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7554bf8d..a0c1bc8a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,6 +13,7 @@ jobs: - gemfiles/Gemfile-rails-6-0 - gemfiles/Gemfile-rails-5-2 ruby: + - '3.3' - '3.2' - '3.1' - '3.0' @@ -24,6 +25,10 @@ jobs: ruby: '2.6' - gemfile: Gemfile ruby: '2.5' + - gemfile: gemfiles/Gemfile-rails-main + ruby: '3.0' + - gemfile: gemfiles/Gemfile-rails-main + ruby: '2.7' - gemfile: gemfiles/Gemfile-rails-main ruby: '2.6' - gemfile: gemfiles/Gemfile-rails-main @@ -32,10 +37,14 @@ jobs: ruby: '2.6' - gemfile: gemfiles/Gemfile-rails-7-0 ruby: '2.5' + - gemfile: gemfiles/Gemfile-rails-6-0 + ruby: '3.3' - gemfile: gemfiles/Gemfile-rails-6-0 ruby: '3.2' - gemfile: gemfiles/Gemfile-rails-6-0 ruby: '3.1' + - gemfile: gemfiles/Gemfile-rails-5-2 + ruby: '3.3' - gemfile: gemfiles/Gemfile-rails-5-2 ruby: '3.2' - gemfile: gemfiles/Gemfile-rails-5-2 diff --git a/CHANGELOG.md b/CHANGELOG.md index f6669746..eb32b4ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## Unreleased + +* Add support to Ruby 3.3. (no changes required.) + ## 5.3.0 * Add support for Rails 7.1. (no meaningful changes required.)