diff --git a/CHANGELOG.md b/CHANGELOG.md index b2952b9..8b4b272 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,11 @@ ## Unreleased -- [PR 18](https://github.com/westonganger/paper_trail-association_tracking/pull/18) - Improve performance for `Model.reify(has_many: true)` by separating the SQL subquery. +- Nothing yet + +## 2.1.0 - 2020-08-14 + +- [PR #18](https://github.com/westonganger/paper_trail-association_tracking/pull/18) - Improve performance for `Model.reify(has_many: true)` by separating the SQL subquery. - [PR #15](https://github.com/westonganger/paper_trail-association_tracking/pull/15) - Recreate `version_associations.foreign_key` index to utilize the new `version_associations.foreign_type` column - Update test matrix to support multiple versions of PT-core and ActiveRecord - Remove deprecated methods `clear_transaction_id`, `transaction_id` and `transaction_id=` diff --git a/lib/paper_trail_association_tracking/version.rb b/lib/paper_trail_association_tracking/version.rb index a976f0b..e6c019c 100644 --- a/lib/paper_trail_association_tracking/version.rb +++ b/lib/paper_trail_association_tracking/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module PaperTrailAssociationTracking - VERSION = "2.0.0" + VERSION = "2.1.0" end