From a2fac2542313fb253bad9162a0ef0f85f3156a68 Mon Sep 17 00:00:00 2001 From: Piotr Kuczynski Date: Wed, 18 Oct 2023 23:50:55 +0200 Subject: [PATCH] Bump to version 5.0.0 --- CHANGELOG.md | 2 +- lib/config/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2a3e8a8..67857f17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ ### BREAKING CHANGES -* `config` no longer loads `deep_merge`'s monkey patch for `Hash#deep_merge` and `Hash#deep_merge!` ([#342](https://github.com/rubyconfig/config/pull/342)). If you rely on those methods and are not using Rails / Active Support, you can load the monkey patch via `require 'deep_merge/deep_merge_hash'`. +* No longer load `deep_merge`'s monkey patch for `Hash#deep_merge` and `Hash#deep_merge!` ([#342](https://github.com/rubyconfig/config/pull/342)). If you rely on those methods and are not using Rails / Active Support, you can load the monkey patch via `require 'deep_merge/deep_merge_hash'`. This change fixes Rails 7.x support. ## 4.2.1 diff --git a/lib/config/version.rb b/lib/config/version.rb index a2db3069..f6488324 100644 --- a/lib/config/version.rb +++ b/lib/config/version.rb @@ -1,3 +1,3 @@ module Config - VERSION = '4.2.1'.freeze + VERSION = '5.0.0'.freeze end