Release 11.0.0

This commit is contained in:
Jared Beck 2020-08-24 00:21:46 -04:00
parent cf978d780b
commit 646d7e2c52
3 changed files with 20 additions and 4 deletions

View File

@ -7,6 +7,20 @@ recommendations of [keepachangelog.com](http://keepachangelog.com/).
### Breaking Changes
- None
### Added
- None
### Fixed
- None
## 11.0.0 (2020-08-24)
### Breaking Changes
- [#1221](https://github.com/paper-trail-gem/paper_trail/pull/1221)
If you use the experimental association-tracking feature, and you forget to
install the `paper_trail-association_tracking` gem, then, when you call

View File

@ -13,6 +13,7 @@ has been destroyed.
| Version | Documentation |
| -------------- | ------------- |
| Unreleased | https://github.com/paper-trail-gem/paper_trail/blob/master/README.md |
| 11.0.0 | https://github.com/paper-trail-gem/paper_trail/blob/v11.0.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 |
| 8.1.2 | https://github.com/paper-trail-gem/paper_trail/blob/v8.1.2/README.md |
@ -82,7 +83,8 @@ has been destroyed.
| paper_trail | branch | ruby | activerecord |
| -------------- | ---------- | -------- | ------------- |
| unreleased | master | >= 2.3.0 | >= 4.2, < 6.1 |
| unreleased | master | >= 2.4.0 | >= 5.2, < 6.1 |
| 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 |
| 8 | 8-stable | >= 2.2.0 | >= 4.2, < 5.2 |

View File

@ -7,9 +7,9 @@ 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 = 10
MINOR = 3
TINY = 1
MAJOR = 11
MINOR = 0
TINY = 0
# Set PRE to nil unless it's a pre-release (beta, rc, etc.)
PRE = nil