diff --git a/CHANGELOG.md b/CHANGELOG.md index 37dda6b..7f52ebc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ All notable changes to this project will be documented in this file. +## 2.6.1 (2025-01-17) + +* Fixed: Issue with `ActiveType::Object` when using has_many on Rails 7.2. + Thanks to @corableus. + +## 2.6.0 (2024-12-20) + +* Drop support for Rails < 5, Ruby < 2.7. + ## 2.5.1 (2024-08-14) * Fixed: Make `ActiveType::Object` work on Rails 7.2. diff --git a/Gemfile.6.1.pg.lock b/Gemfile.6.1.pg.lock index 3a5167c..f246e7e 100644 --- a/Gemfile.6.1.pg.lock +++ b/Gemfile.6.1.pg.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - active_type (2.6.0) + active_type (2.6.1) activerecord (>= 6.1) GEM diff --git a/Gemfile.6.1.sqlite3.lock b/Gemfile.6.1.sqlite3.lock index e728a92..d65de72 100644 --- a/Gemfile.6.1.sqlite3.lock +++ b/Gemfile.6.1.sqlite3.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - active_type (2.6.0) + active_type (2.6.1) activerecord (>= 6.1) GEM diff --git a/Gemfile.7.1.pg.lock b/Gemfile.7.1.pg.lock index 92df49b..3fbd476 100644 --- a/Gemfile.7.1.pg.lock +++ b/Gemfile.7.1.pg.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - active_type (2.6.0) + active_type (2.6.1) activerecord (>= 6.1) GEM diff --git a/Gemfile.7.1.sqlite3.lock b/Gemfile.7.1.sqlite3.lock index d76b464..3487f7c 100644 --- a/Gemfile.7.1.sqlite3.lock +++ b/Gemfile.7.1.sqlite3.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - active_type (2.6.0) + active_type (2.6.1) activerecord (>= 6.1) GEM diff --git a/Gemfile.7.2.mysql2.lock b/Gemfile.7.2.mysql2.lock index 0d08ae1..e1e68d3 100644 --- a/Gemfile.7.2.mysql2.lock +++ b/Gemfile.7.2.mysql2.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - active_type (2.6.0) + active_type (2.6.1) activerecord (>= 6.1) GEM diff --git a/Gemfile.7.2.pg.lock b/Gemfile.7.2.pg.lock index 2e2fa30..5fcfcdf 100644 --- a/Gemfile.7.2.pg.lock +++ b/Gemfile.7.2.pg.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - active_type (2.6.0) + active_type (2.6.1) activerecord (>= 6.1) GEM diff --git a/Gemfile.7.2.sqlite3.lock b/Gemfile.7.2.sqlite3.lock index 76251df..eacc071 100644 --- a/Gemfile.7.2.sqlite3.lock +++ b/Gemfile.7.2.sqlite3.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - active_type (2.6.0) + active_type (2.6.1) activerecord (>= 6.1) GEM diff --git a/Gemfile.8.0.sqlite3.lock b/Gemfile.8.0.sqlite3.lock index 7f23d0d..28621a3 100644 --- a/Gemfile.8.0.sqlite3.lock +++ b/Gemfile.8.0.sqlite3.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - active_type (2.6.0) + active_type (2.6.1) activerecord (>= 6.1) GEM diff --git a/lib/active_type/version.rb b/lib/active_type/version.rb index 4ca3666..0ed9b06 100644 --- a/lib/active_type/version.rb +++ b/lib/active_type/version.rb @@ -1,3 +1,3 @@ module ActiveType - VERSION = '2.6.0' + VERSION = '2.6.1' end