From f5176a1a620e956015722e8ed9308f96540b9751 Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Thu, 31 Aug 2023 08:36:20 -0400 Subject: [PATCH 1/2] doc: update CHANGELOG --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d55ea51e..1c9d68f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,15 @@ ## next - unreleased +### Added + +- Improve `pp` output for `ActiveHash::Relation`. [#288](https://github.com/active-hash/active_hash/pull/288) @flavorjones + +### Fixed + - Fix relation matching when attribute name collides with a method. [#281](https://github.com/active-hash/active_hash/pull/281) @flavorjones - Fix association reflection in applications that don't use ActiveHash::Associations. [#286](https://github.com/active-hash/active_hash/pull/286) @iberianpig +- Fix `ActiveHash::Relation#method_missing` and `#respond_to_missing?` without scopes. [#278](https://github.com/active-hash/active_hash/pull/278) @julianrubisch ## Version [3.2.0] - 2023-05-06 From 702238ac0e5a81ac349b7bf19c8f97cb4ec18d68 Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Thu, 31 Aug 2023 08:43:59 -0400 Subject: [PATCH 2/2] version bump to v3.2.1 --- CHANGELOG.md | 2 +- lib/active_hash/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c9d68f9..c55cb04c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # active_hash Changelog -## next - unreleased +## Version [3.2.1] - 2023-08-31 ### Added diff --git a/lib/active_hash/version.rb b/lib/active_hash/version.rb index bba238e9..ab6b5efe 100644 --- a/lib/active_hash/version.rb +++ b/lib/active_hash/version.rb @@ -1,5 +1,5 @@ module ActiveHash module Gem - VERSION = "3.2.0" + VERSION = "3.2.1" end end