Release 12.1.0

This commit is contained in:
Jared Beck 2021-08-30 00:10:16 -04:00
parent 19499a5f63
commit 79d622d7a7
3 changed files with 19 additions and 4 deletions

View File

@ -4,8 +4,21 @@ This project follows [semver 2.0.0](http://semver.org/spec/v2.0.0.html) and the
recommendations of [keepachangelog.com](http://keepachangelog.com/).
## Unreleased
- [#1309](https://github.com/paper-trail-gem/paper_trail/pull/1309) -
Removes `item_subtype` requirement when specifying model-specific limits.
### Breaking Changes
- None
### Added
- None
### Fixed
- None
## 12.1.0 (2021-08-30)
### Breaking Changes
- None
@ -24,6 +37,8 @@ recommendations of [keepachangelog.com](http://keepachangelog.com/).
- [#1285](https://github.com/paper-trail-gem/paper_trail/pull/1285) -
For ActiveRecord >= 6.0, the `touch` callback will no longer create a new
`Version` for skipped or ignored attributes.
- [#1309](https://github.com/paper-trail-gem/paper_trail/pull/1309) -
Removes `item_subtype` requirement when specifying model-specific limits.
- [#1333](https://github.com/paper-trail-gem/paper_trail/pull/1333) -
Improve reification of STI models that use `find_sti_class`/`sti_class_for`
to customize single table inheritance.

View File

@ -15,7 +15,7 @@ This is the _user guide_. See also, the
Choose version:
[Unreleased](https://github.com/paper-trail-gem/paper_trail/blob/master/README.md),
[12.0](https://github.com/paper-trail-gem/paper_trail/blob/v12.0.0/README.md),
[12.1](https://github.com/paper-trail-gem/paper_trail/blob/v12.1.0/README.md),
[11.1](https://github.com/paper-trail-gem/paper_trail/blob/v11.1.0/README.md),
[10.3](https://github.com/paper-trail-gem/paper_trail/blob/v10.3.1/README.md),
[9.2](https://github.com/paper-trail-gem/paper_trail/blob/v9.2.0/README.md),

View File

@ -8,7 +8,7 @@ module PaperTrail
# People are encouraged to use `PaperTrail.gem_version` instead.
module VERSION
MAJOR = 12
MINOR = 0
MINOR = 1
TINY = 0
# Set PRE to nil unless it's a pre-release (beta, rc, etc.)