From 087855d95146b3d5d3699705cccd68abda3fcfa0 Mon Sep 17 00:00:00 2001 From: Jakob Skjerning Date: Fri, 2 Jun 2023 11:35:34 +0200 Subject: [PATCH] Add Ruby 3.1 and 3.2 to the build matrix --- .github/workflows/ruby.yml | 2 +- CHANGELOG.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index b9d177d..6b5bf77 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: rails-version: ['5.2.5', '6.0.3.6', '6.1.3.1', '7.0.5', 'main'] - ruby-version: ['2.5', '2.6', '2.7', '3.0'] + ruby-version: ['2.5', '2.6', '2.7', '3.0', '3.1', '3.2'] exclude: - rails-version: 'main' ruby-version: '2.5' diff --git a/CHANGELOG.md b/CHANGELOG.md index 2dde3b9..3f0439f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ * Added support for URLs with non-ASCII characters in them. In other words, your application shouldn't get stuck in a an infinite redirect loop when a request contains non-ASCII characters that can be downcased. -* Added Ruby 3.0 to the test matrix. +* Added Ruby 3.0, 3.1, 3.2 to the test matrix. * Added Rails 6.1.x and 7.0.x to the build matrix.