From 41aec82d9e5ed24a48b8a9793c936b82f69dc2fb Mon Sep 17 00:00:00 2001 From: Brian Shand Date: Sun, 21 Sep 2025 21:56:36 +0100 Subject: [PATCH 1/2] Add version to support Rails ~> 7.2.2.0 Test against Ruby 3.4 --- .github/workflows/test.yml | 2 +- CHANGELOG.md | 4 ++++ lib/active_model/caution/version.rb | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 82d5566..447662c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,10 +7,10 @@ jobs: strategy: matrix: ruby-version: - - '3.0' - '3.1' - '3.2' - '3.3' + - '3.4' name: Ruby ${{ matrix.ruby-version }} diff --git a/CHANGELOG.md b/CHANGELOG.md index bb2fe85..7e315a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ ## [Unreleased] * no unreleased changes * +## 7.2.2 / 2025-09-21 +### Fixed +* Support patch releases of Rails after the current minor revision 7.2.2.2 + ## 7.1.5 / 2024-11-18 ### Fixed * Use minitest for testing diff --git a/lib/active_model/caution/version.rb b/lib/active_model/caution/version.rb index 5720808..b86a58b 100644 --- a/lib/active_model/caution/version.rb +++ b/lib/active_model/caution/version.rb @@ -1,6 +1,6 @@ module ActiveModel module Caution - RAILS_VERSION = '7.1.5'.freeze + RAILS_VERSION = '7.2.2'.freeze GEM_REVISION = '0'.freeze # Gem version: From 7faefc18c88142e7a1af5c1658b683c4d7879039 Mon Sep 17 00:00:00 2001 From: Brian Shand Date: Mon, 22 Sep 2025 14:08:48 +0100 Subject: [PATCH 2/2] GitHub actions shoudl show all failures --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 447662c..0a92733 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,6 +5,7 @@ on: [push] jobs: test: strategy: + fail-fast: false matrix: ruby-version: - '3.1'