Release 7.0.1

This commit is contained in:
Jared Beck 2017-04-10 12:01:13 -04:00
parent 362ad6dc3c
commit ca517f882f
3 changed files with 16 additions and 2 deletions

View File

@ -11,6 +11,20 @@ recommendations of [keepachangelog.com](http://keepachangelog.com/).
### Added
- None
### Fixed
- None
## 7.0.1 (2017-04-10)
### Breaking Changes
- None
### Added
- Generate cleaner migrations for databases other than MySQL
### Fixed

View File

@ -11,7 +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 |
| 7.0.1 | 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 |

View File

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