Release 12.0.0

This commit is contained in:
Jared Beck 2021-03-29 11:23:29 -04:00
parent bee9213641
commit d8edf3c987
3 changed files with 20 additions and 3 deletions

View File

@ -7,7 +7,20 @@ recommendations of [keepachangelog.com](http://keepachangelog.com/).
### Breaking Changes
- Rails: Instead of an `Engine`, PT now provides a `Railtie`, which is simpler.
- None
### Added
- None
### Fixed
- None
## 12.0.0 (2021-03-29)
### Breaking Changes
- Rails: The deprecated `config.paper_trail` configuration technique
has been removed. This configuration object was deprecated in 10.2.0. It only
had one key, `config.paper_trail.enabled`. Please review docs section [2.d.
@ -22,6 +35,8 @@ recommendations of [keepachangelog.com](http://keepachangelog.com/).
### Fixed
- [#1281](https://github.com/paper-trail-gem/paper_trail/pull/1281) Rails:
Instead of an `Engine`, PT now provides a `Railtie`, which is simpler.
- Expand kwargs passed to `save_with_version` using double splat operator - Rails 6.1 compatibility
- [#1287](https://github.com/paper-trail-gem/paper_trail/issues/1287) - Fix 'rails db:migrate' error when run against an app with mysql2 adapter

View File

@ -13,6 +13,7 @@ has been destroyed.
| Version | Documentation |
| -------------- | ------------- |
| Unreleased | https://github.com/paper-trail-gem/paper_trail/blob/master/README.md |
| 12.0.0 | https://github.com/paper-trail-gem/paper_trail/blob/v12.0.0/README.md |
| 11.1.0 | https://github.com/paper-trail-gem/paper_trail/blob/v11.1.0/README.md |
| 10.3.1 | https://github.com/paper-trail-gem/paper_trail/blob/v10.3.1/README.md |
| 9.2.0 | https://github.com/paper-trail-gem/paper_trail/blob/v9.2.0/README.md |
@ -84,6 +85,7 @@ has been destroyed.
| paper_trail | branch | ruby | activerecord |
| -------------- | ---------- | -------- | ------------- |
| unreleased | master | >= 2.5.0 | >= 5.2, < 6.2 |
| 12 | master | >= 2.5.0 | >= 5.2, < 6.2 |
| 11 | master | >= 2.4.0 | >= 5.2, < 6.1 |
| 10 | 10-stable | >= 2.3.0 | >= 4.2, < 6.1 |
| 9 | 9-stable | >= 2.3.0 | >= 4.2, < 5.3 |

View File

@ -7,8 +7,8 @@ module PaperTrail
# because of this confusion, but it's not worth the breaking change.
# People are encouraged to use `PaperTrail.gem_version` instead.
module VERSION
MAJOR = 11
MINOR = 1
MAJOR = 12
MINOR = 0
TINY = 0
# Set PRE to nil unless it's a pre-release (beta, rc, etc.)