diff --git a/CHANGELOG.md b/CHANGELOG.md index d55ea51e..c55cb04c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,16 @@ # active_hash Changelog -## next - unreleased +## Version [3.2.1] - 2023-08-31 + +### 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 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