Release 8.0.1

This commit is contained in:
Jared Beck 2017-10-25 12:37:35 -04:00
parent 9c037b510d
commit f533104b61
3 changed files with 16 additions and 2 deletions

View File

@ -16,6 +16,20 @@ recommendations of [keepachangelog.com](http://keepachangelog.com/).
### Fixed
- None
## 8.0.1 (2017-10-25)
### Breaking Changes
- None
### Added
- None
### Fixed
- [#1003](https://github.com/airblade/paper_trail/pull/1003) - Warn when PT
cannot be loaded because rails is not loaded yet.

View File

@ -11,7 +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 |
| 8.0.1 | https://github.com/airblade/paper_trail/blob/v8.0.1/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 |

View File

@ -7,7 +7,7 @@ module PaperTrail
module VERSION
MAJOR = 8
MINOR = 0
TINY = 0
TINY = 1
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".").freeze