File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -23,6 +23,6 @@ appraise "rails-8.0" do
2323end
2424
2525appraise "rails-8.1" do
26- gem "rails" , "~> 8.1.0.beta1 "
26+ gem "rails" , "~> 8.1.0"
2727 gem "sqlite3" , ">= 2.1"
2828end
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ recommendations of [keepachangelog.com](http://keepachangelog.com/).
2424
2525- Drop support for Rails 6.1, which [ reached EoL on 2024-10-01] [ 2 ]
2626- Drop support for Rails 7.0, which [ reached EoL on 2025-04-01] [ 2 ]
27+ - Add support for Rails 8.1
2728- Drop support for Ruby 3.0, which [ reached EoL on 2024-04-23] [ 3 ]
2829- Drop support for Ruby 3.1, which [ reached EoL on 2024-03-31] [ 3 ]
2930
Original file line number Diff line number Diff line change 22
33source "https://rubygems.org"
44
5- gem "rails", "~> 8.1.0.beta1 "
5+ gem "rails", "~> 8.1.0"
66gem "sqlite3", ">= 2.1"
77
88gemspec path: "../"
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ module PaperTrail
1818 # versions.
1919 module Compatibility
2020 ACTIVERECORD_GTE = ">= 7.1" # enforced in gemspec
21- ACTIVERECORD_LT = "< 8.1 " # not enforced in gemspec
21+ ACTIVERECORD_LT = "< 8.2 " # not enforced in gemspec
2222
2323 E_INCOMPATIBLE_AR = <<-EOS
2424 PaperTrail %s is not compatible with ActiveRecord %s. We allow PT
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ module PaperTrail
1414
1515 context "when incompatible" do
1616 it "writes a warning to stderr" do
17- ar_version = ::Gem ::Version . new ( "8.1 .0" )
17+ ar_version = ::Gem ::Version . new ( "8.2 .0" )
1818 expect {
1919 described_class . check_activerecord ( ar_version )
2020 } . to output ( /not compatible/ ) . to_stderr
You can’t perform that action at this time.
0 commit comments