Skip to content

Commit

Permalink
Release 7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredbeck committed Apr 1, 2017
1 parent 48553d0 commit e051c55
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Expand Up @@ -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:
Expand Down
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -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 |
Expand Down Expand Up @@ -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 |
Expand Down
4 changes: 2 additions & 2 deletions lib/paper_trail/version_number.rb
Expand Up @@ -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
Expand Down

0 comments on commit e051c55

Please sign in to comment.