diff --git a/CHANGELOG.md b/CHANGELOG.md index bb2fe85..a17c15b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ ## [Unreleased] * no unreleased changes * +## 7.1.6 / 2026-07-30 +### Fixed +* Support patch releases of Rails after the current minor revision 7.1.6.0 + ## 7.1.5 / 2024-11-18 ### Fixed * Use minitest for testing diff --git a/Rakefile b/Rakefile index 6f354f4..5e3eb6d 100644 --- a/Rakefile +++ b/Rakefile @@ -11,5 +11,5 @@ Rake::TestTask.new(:test) do |t| t.libs << 'lib' t.libs << 'test' t.pattern = 'test/**/*_test.rb' - t.verbose = true + t.verbose = false end diff --git a/lib/active_model/caution/version.rb b/lib/active_model/caution/version.rb index 5720808..4c8fc61 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.1.6'.freeze GEM_REVISION = '0'.freeze # Gem version: diff --git a/test/test_helper.rb b/test/test_helper.rb index 29d941a..07302e5 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -4,7 +4,6 @@ require 'active_record' require 'minitest/autorun' -require 'minitest/unit' require File.dirname(__FILE__) + '/../lib/activemodel-caution'