diff --git a/CHANGELOG.md b/CHANGELOG.md index e13ca464..e749fe61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 4.1.0 + +### Bug fixes + +* Only load `Railtie` integration if `Rails::Railtie` is defined ([#319](https://github.com/rubyconfig/config/pull/319)) +* Fix indentation warning in Ruby 3.1 ([#322](https://github.com/rubyconfig/config/pull/322)) + ## 4.0.0 ### BREAKING CHANGES diff --git a/lib/config/version.rb b/lib/config/version.rb index 0478ee77..ac68e789 100644 --- a/lib/config/version.rb +++ b/lib/config/version.rb @@ -1,3 +1,3 @@ module Config - VERSION = '4.0.0'.freeze + VERSION = '4.1.0'.freeze end