diff --git a/CHANGELOG.md b/CHANGELOG.md index 64a78239..5a3893dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,15 +11,31 @@ recommendations of [keepachangelog.com](http://keepachangelog.com/). ### Added -- The experimental associations tracking feature has been moved to a - separate gem, [paper_trail-association_tracking] - (https://github.com/westonganger/paper_trail-association_tracking). - PT will, for now, have a runtime dependency on this new gem. So, assuming the - gem extraction goes well, no breaking changes are anticipated. +- None + +### Fixed + +- None + +## 9.2.0 (2018-06-09) + +### Breaking Changes + +- None + +### Added + +- [#1070](https://github.com/paper-trail-gem/paper_trail/issues/1070) - + The experimental associations tracking feature has been moved to a separate + gem, [paper_trail-association_tracking] + (https://github.com/westonganger/paper_trail-association_tracking). PT will, + for now, have a runtime dependency on this new gem. So, assuming the gem + extraction goes well, no breaking changes are anticipated. - [#1093](https://github.com/paper-trail-gem/paper_trail/pull/1093) - - `PaperTrail.config.object_changes_adapter` - Allows specifying an adapter that will - determine how the changes for each version are stored in the object_changes column. - An example of this implementation using the hashdiff gem can be found here: + `PaperTrail.config.object_changes_adapter` - Expert users can write their own + adapter to control how the changes for each version are stored in the + object_changes column. An example of this implementation using the hashdiff + gem can be found here: [paper_trail-hashdiff](https://github.com/hashwin/paper_trail-hashdiff) ### Fixed diff --git a/README.md b/README.md index 3fce912c..46f20a6d 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ has been destroyed. | Version | Documentation | | -------------- | ------------- | | Unreleased | https://github.com/paper-trail-gem/paper_trail/blob/master/README.md | -| 9.1.1 | https://github.com/paper-trail-gem/paper_trail/blob/v9.1.1/README.md | +| 9.2.0 | https://github.com/paper-trail-gem/paper_trail/blob/v9.2.0/README.md | | 8.1.2 | https://github.com/paper-trail-gem/paper_trail/blob/v8.1.2/README.md | | 7.1.3 | https://github.com/paper-trail-gem/paper_trail/blob/v7.1.3/README.md | | 6.0.2 | https://github.com/paper-trail-gem/paper_trail/blob/v6.0.2/README.md | diff --git a/lib/paper_trail/version_number.rb b/lib/paper_trail/version_number.rb index bf7b917a..9e85eea5 100644 --- a/lib/paper_trail/version_number.rb +++ b/lib/paper_trail/version_number.rb @@ -8,8 +8,8 @@ module PaperTrail # People are encouraged to use `PaperTrail.gem_version` instead. module VERSION MAJOR = 9 - MINOR = 1 - TINY = 1 + MINOR = 2 + TINY = 0 # Set PRE to nil unless it's a pre-release (beta, rc, etc.) PRE = nil