From 94e9c0daa28c5a60441f5e173f3e6b1d2c555918 Mon Sep 17 00:00:00 2001 From: Taketo Takashima Date: Mon, 11 Nov 2024 03:32:09 +0900 Subject: [PATCH] Adjust CI Matrix Ruby Version to 3.0+ to align with gemspec (#1499) Co-authored-by: fatkodima --- .github/workflows/test.yml | 7 +++++-- README.md | 9 +++++---- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4e194e49..0766196e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -63,11 +63,14 @@ jobs: # To keep matrix size down, only test highest and lowest rubies. # See "Lowest supported ruby version" in CONTRIBUTING.md - ruby: [ '3.1', '3.3' ] + ruby: [ '3.0', '3.3' ] exclude: # Rails 8 requires ruby 3.2+. - gemfile: 'rails_8.0' - ruby: '3.1' + ruby: '3.0' + # Rails 7.2 requires ruby 3.1+. + - gemfile: 'rails_7.2' + ruby: '3.0' steps: - name: Checkout source uses: actions/checkout@v4 diff --git a/README.md b/README.md index 358c7117..dfb65d6c 100644 --- a/README.md +++ b/README.md @@ -93,10 +93,11 @@ Choose version: | paper_trail | ruby | activerecord | |-------------|----------|---------------| -| unreleased | >= 3.1.0 | >= 6.1, <= 8.0 | -| 15.2 | >= 3.1.0 | >= 6.1, <= 7.2 | -| 15.1 | >= 3.1.0 | >= 6.1, <= 7.1 | -| 15 | >= 3.0.0 | >= 6.1, < 7.2 | +| unreleased | >= 3.0.0 | >= 6.1, <= 8.0 | +| 16 | >= 3.0.0 | >= 6.1, <= 8.0 | +| 15.2 | >= 3.0.0 | >= 6.1, <= 7.2 | +| 15.1 | >= 3.0.0 | >= 6.1, <= 7.1 | +| 15 | >= 3.0.0 | >= 6.1, <= 7.1 | | 14 | >= 2.7.0 | >= 6.0, < 7.1 | | 13 | >= 2.6.0 | >= 5.2, < 7.1 | | 12 | >= 2.6.0 | >= 5.2, < 7.1 |