diff --git a/CHANGELOG.md b/CHANGELOG.md index bdb000e..14bb4e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,15 @@ CHANGELOG --------- - **Unreleased** - * [View Diff](https://github.com/westonganger/active_snapshot/compare/v0.4.0...master) + * [View Diff](https://github.com/westonganger/active_snapshot/compare/v0.5.0...master) + * Nothing yet + +- **v0.5.0** - Nov 8, 2024 + * [View Diff](https://github.com/westonganger/active_snapshot/compare/v0.4.0...v0.5.0) * [#61](https://github.com/westonganger/active_snapshot/pull/61) - Ensure snapshot record returned by `create_snapshot!` is `valid?` * [#60](https://github.com/westonganger/active_snapshot/pull/60) - Store enum value as integer * [#56](https://github.com/westonganger/active_snapshot/pull/56) - Add presence validation for object in SnapshotItem model - * [#57](https://github.com/westonganger/active_snapshot/pull/57) - Add readonly argument to Shapshot#fetch_reified_items + * [#57](https://github.com/westonganger/active_snapshot/pull/57) - Add readonly argument to `Shapshot#fetch_reified_items` * [#53](https://github.com/westonganger/active_snapshot/pull/53) - Allow `ActiveSnapshot.config` to be called before ActiveRecord `on_load` hook has occurred * [#52](https://github.com/westonganger/active_snapshot/pull/52) - Remove deprecated positional argument on `create_snapshot!` diff --git a/lib/active_snapshot/version.rb b/lib/active_snapshot/version.rb index a5ccaf0..3dfb28b 100644 --- a/lib/active_snapshot/version.rb +++ b/lib/active_snapshot/version.rb @@ -1,3 +1,3 @@ module ActiveSnapshot - VERSION = "0.4.0".freeze + VERSION = "0.5.0".freeze end