From eadba9fe54de1ab10a10668db43416dc3e24ef08 Mon Sep 17 00:00:00 2001 From: Aaron Lasseigne Date: Sat, 23 Nov 2024 15:47:40 -0600 Subject: [PATCH] bump version to 5.4.0 --- CHANGELOG.md | 8 +++++--- README.md | 4 ++-- lib/active_interaction/version.rb | 2 +- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 38979c33..61b98965 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,12 @@ -# [5.4.0][] (2024-11-17) +# [5.4.0][] (2024-11-23) ## Added - - Support for Rails 8. + - [#579][] Support for Rails 8. Thanks @bvalentino! ## Fixed - - Manually pull in the `ostruct` gem since it's being removed from stdlib. + - [#577][] Manually pull in the `ostruct` gem since it's being removed from stdlib. # [5.3.0][] (2023-05-06) @@ -1385,3 +1385,5 @@ Example.run [#545]: https://github.com/AaronLasseigne/active_interaction/issues/545 [#554]: https://github.com/AaronLasseigne/active_interaction/issues/554 [#553]: https://github.com/AaronLasseigne/active_interaction/issues/553 + [#577]: https://github.com/AaronLasseigne/active_interaction/issues/577 + [#579]: https://github.com/AaronLasseigne/active_interaction/pull/579 diff --git a/README.md b/README.md index 02055fd0..6882da24 100644 --- a/README.md +++ b/README.md @@ -60,13 +60,13 @@ If ActiveModel deals with your nouns, then ActiveInteraction handles your verbs. Add it to your Gemfile: ``` rb -gem 'active_interaction', '~> 5.3' +gem 'active_interaction', '~> 5.4' ``` Or install it manually: ``` sh -$ gem install active_interaction --version '~> 5.3' +$ gem install active_interaction --version '~> 5.4' ``` This project uses [Semantic Versioning][]. Check out [GitHub releases][] for a diff --git a/lib/active_interaction/version.rb b/lib/active_interaction/version.rb index 427e4e93..14f900f7 100644 --- a/lib/active_interaction/version.rb +++ b/lib/active_interaction/version.rb @@ -4,5 +4,5 @@ module ActiveInteraction # The version number. # # @return [Gem::Version] - VERSION = Gem::Version.new('5.3.0') + VERSION = Gem::Version.new('5.4.0') end