Release 7.0.0

This commit is contained in:
Jared Beck 2017-04-01 03:05:50 -04:00
parent 48553d066b
commit e051c55539
3 changed files with 18 additions and 2 deletions

View File

@ -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:

View File

@ -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 |

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 = 6
MAJOR = 7
MINOR = 0
TINY = 2
TINY = 0
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".").freeze