diff --git a/CHANGELOG.md b/CHANGELOG.md index 986d1742..bc86dd8d 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 + +## 7.0.0 (2017-04-01) + +### Breaking Changes + - Drop support for ruby 1.9.3, whose EOL was 2015-02-23 - Drop support for ruby 2.0.0, whose EOL was 2016-02-24 - Remove deprecated config methods: diff --git a/README.md b/README.md index 73d717ef..e0be7f93 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 | +| 7.0.0 | https://github.com/airblade/paper_trail/blob/v7.0.0/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 | | 4.2.0 | https://github.com/airblade/paper_trail/blob/v4.2.0/README.md | @@ -65,6 +66,7 @@ has been destroyed. | paper_trail | branch | tags | ruby | activerecord | | -------------- | ---------- | ------ | -------- | ------------- | | unreleased | master | | >= 2.1.0 | >= 4.0, < 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 | | 4 | 4-stable | v4.x | >= 1.8.7 | >= 3.0, < 5.1 | diff --git a/lib/paper_trail/version_number.rb b/lib/paper_trail/version_number.rb index c9b90afe..9690e593 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 = 6 + MAJOR = 7 MINOR = 0 - TINY = 2 + TINY = 0 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".").freeze