Merge pull request #1110 from paper-trail-gem/release-9.2.0

Release 9.2.0
This commit is contained in:
Jared Beck 2018-06-09 23:20:57 -04:00 committed by GitHub
commit 379751b79a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 27 additions and 11 deletions

View File

@ -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

View File

@ -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 |

View File

@ -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