Release 8.0.0

This commit is contained in:
Jared Beck 2017-10-04 22:12:52 -04:00
parent 56991ae9a1
commit 9802c47284
3 changed files with 21 additions and 5 deletions

View File

@ -7,6 +7,20 @@ recommendations of [keepachangelog.com](http://keepachangelog.com/).
### Breaking Changes
- None
### Added
- None
### Fixed
- None
## 8.0.0 (2017-10-04)
### Breaking Changes
- Drop support for rails 4.0 and 4.1, whose EoL was
[2016-06-30](http://weblog.rubyonrails.org/2016/6/30/Rails-5-0-final/)
- Drop support for ruby 2.1, whose EoL was [2017-04-01](http://bit.ly/2ppWDYa)
@ -19,8 +33,8 @@ recommendations of [keepachangelog.com](http://keepachangelog.com/).
### Fixed
- Fix Associations
supports revision of association with module name.
- [#996](https://github.com/airblade/paper_trail/pull/996) - Incorrect
item_type in association reification query
## 7.1.3 (2017-09-19)

View File

@ -11,6 +11,7 @@ has been destroyed.
| Version | Documentation |
| -------------- | ------------- |
| Unreleased | https://github.com/airblade/paper_trail/blob/master/README.md |
| 8.0.0 | https://github.com/airblade/paper_trail/blob/v8.0.0/README.md |
| 7.1.3 | https://github.com/airblade/paper_trail/blob/v7.1.3/README.md |
| 6.0.2 | https://github.com/airblade/paper_trail/blob/v6.0.2/README.md |
| 5.2.3 | https://github.com/airblade/paper_trail/blob/v5.2.3/README.md |
@ -66,6 +67,7 @@ has been destroyed.
| paper_trail | branch | tags | ruby | activerecord |
| -------------- | ---------- | ------ | -------- | ------------- |
| unreleased | master | | >= 2.2.0 | >= 4.2, < 6 |
| 8 | master | v8.x | >= 2.2.0 | >= 4.2, < 6 |
| 7 | 7-stable | v7.x | >= 2.1.0 | >= 4.0, < 6 |
| 6 | 6-stable | v6.x | >= 1.9.3 | >= 4.0, < 6 |
| 5 | 5-stable | v5.x | >= 1.9.3 | >= 3.0, < 5.1 |

View File

@ -5,9 +5,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 = 7
MINOR = 1
TINY = 3
MAJOR = 8
MINOR = 0
TINY = 0
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".").freeze