diff --git a/CHANGELOG.md b/CHANGELOG.md index 1619d68..93ab7f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # ActiveUtils changelog +### Version 3.4.1 (APril 04, 2023) +- Fix depracated deprecated calling of `=~` on Object which is removed by ruby 3.2.0 as described here: https://bugs.ruby-lang.org/issues/15231 + ### Version 3.4.0 (February 23, 2022) - Add AC and TA to `ActiveUtils::Country::COUNTRIES` diff --git a/lib/active_utils/version.rb b/lib/active_utils/version.rb index ed43332..a52bad5 100644 --- a/lib/active_utils/version.rb +++ b/lib/active_utils/version.rb @@ -1,3 +1,3 @@ module ActiveUtils - VERSION = "3.4.0" + VERSION = "3.4.1" end