diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cada4f..d1fd1e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,14 @@ ## Unreleased +* Nothing yet + +## 1.6.0 - 2020-10-01 + * [#18](https://github.com/westonganger/protected_attributes_continued/pull/18) - Fix for Rails 6+ for new records that were supposed to be created issuing UPDATE sql calls instead of INSERT. They would come back thinking they were persisted, but they didn't have an id attribute because of the invalid sql call made. * Fix method redefined warning for ThroughAssociation#build_record * Fix method redefined warning for HasManyThroughAssociation#options_for_through_association for Rails <= 5.2 -* Add Rails 6 to test matrix +* Add Rails 6.0 to test matrix ## 1.5.0 - 2019-08-16 diff --git a/lib/protected_attributes/version.rb b/lib/protected_attributes/version.rb index 7792d69..f27f38e 100644 --- a/lib/protected_attributes/version.rb +++ b/lib/protected_attributes/version.rb @@ -1,3 +1,3 @@ module ProtectedAttributes - VERSION = "1.5.0".freeze + VERSION = "1.6.0".freeze end