From 9802c47284e4f821c26aaaa0adde30bcec27f3ef Mon Sep 17 00:00:00 2001 From: Jared Beck Date: Wed, 4 Oct 2017 22:12:52 -0400 Subject: [PATCH] Release 8.0.0 --- CHANGELOG.md | 18 ++++++++++++++++-- README.md | 2 ++ lib/paper_trail/version_number.rb | 6 +++--- 3 files changed, 21 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9553999b..13534a88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/README.md b/README.md index c0c87dca..5c9b6702 100644 --- a/README.md +++ b/README.md @@ -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 | diff --git a/lib/paper_trail/version_number.rb b/lib/paper_trail/version_number.rb index 825ac93f..cfc6b60c 100644 --- a/lib/paper_trail/version_number.rb +++ b/lib/paper_trail/version_number.rb @@ -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