Skip to content

Commit 94e9c0d

Browse files
Adjust CI Matrix Ruby Version to 3.0+ to align with gemspec (#1499)
Co-authored-by: fatkodima <[email protected]>
1 parent 5f5a7a0 commit 94e9c0d

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.github/workflows/test.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,14 @@ jobs:
6363

6464
# To keep matrix size down, only test highest and lowest rubies.
6565
# See "Lowest supported ruby version" in CONTRIBUTING.md
66-
ruby: [ '3.1', '3.3' ]
66+
ruby: [ '3.0', '3.3' ]
6767
exclude:
6868
# Rails 8 requires ruby 3.2+.
6969
- gemfile: 'rails_8.0'
70-
ruby: '3.1'
70+
ruby: '3.0'
71+
# Rails 7.2 requires ruby 3.1+.
72+
- gemfile: 'rails_7.2'
73+
ruby: '3.0'
7174
steps:
7275
- name: Checkout source
7376
uses: actions/checkout@v4

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,11 @@ Choose version:
9393

9494
| paper_trail | ruby | activerecord |
9595
|-------------|----------|---------------|
96-
| unreleased | >= 3.1.0 | >= 6.1, <= 8.0 |
97-
| 15.2 | >= 3.1.0 | >= 6.1, <= 7.2 |
98-
| 15.1 | >= 3.1.0 | >= 6.1, <= 7.1 |
99-
| 15 | >= 3.0.0 | >= 6.1, < 7.2 |
96+
| unreleased | >= 3.0.0 | >= 6.1, <= 8.0 |
97+
| 16 | >= 3.0.0 | >= 6.1, <= 8.0 |
98+
| 15.2 | >= 3.0.0 | >= 6.1, <= 7.2 |
99+
| 15.1 | >= 3.0.0 | >= 6.1, <= 7.1 |
100+
| 15 | >= 3.0.0 | >= 6.1, <= 7.1 |
100101
| 14 | >= 2.7.0 | >= 6.0, < 7.1 |
101102
| 13 | >= 2.6.0 | >= 5.2, < 7.1 |
102103
| 12 | >= 2.6.0 | >= 5.2, < 7.1 |

0 commit comments

Comments
 (0)