Skip to content

Commit

Permalink
Merge pull request #1299 from paper-trail-gem/release-12.0.0
Browse files Browse the repository at this point in the history
Release 12.0.0
  • Loading branch information
jaredbeck committed Mar 29, 2021
2 parents bee9213 + d8edf3c commit 4567568
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Expand Up @@ -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.
Expand All @@ -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

Expand Down
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -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 |
Expand Down Expand Up @@ -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 |
Expand Down
4 changes: 2 additions & 2 deletions lib/paper_trail/version_number.rb
Expand Up @@ -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.)
Expand Down

0 comments on commit 4567568

Please sign in to comment.