diff --git a/CHANGELOG.md b/CHANGELOG.md index 6991c0d..43c45aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +* Nothing yet + +## 1.5.0 - 2019-08-16 + * [#13](https://github.com/westonganger/protected_attributes_continued/pull/13) - Fixed with_indifferent_access call in nested attributes * [#14](https://github.com/westonganger/protected_attributes_continued/pull/14) - For ActiveRecord versions >= 5.2.3 Rails does not call `options_for_through_record` anymore. This method was previously used by `protected_attributes` to pass in the `without_protection: true` option. We now override the `build_through_record` method instead and pass the option in there. diff --git a/lib/protected_attributes/version.rb b/lib/protected_attributes/version.rb index ff5a753..1fc6270 100644 --- a/lib/protected_attributes/version.rb +++ b/lib/protected_attributes/version.rb @@ -1,3 +1,3 @@ module ProtectedAttributes - VERSION = "1.4.0" + VERSION = "1.5.0" end