Release 7.0.3

This commit is contained in:
Jared Beck 2017-06-01 15:08:32 -04:00
parent af324eb0dc
commit ec17d38fbc
3 changed files with 18 additions and 3 deletions

View File

@ -17,6 +17,21 @@ recommendations of [keepachangelog.com](http://keepachangelog.com/).
- None
## 7.0.3 (2017-06-01)
### Breaking Changes
- None
### Added
- None
### Fixed
- [#959](https://github.com/airblade/paper_trail/pull/959) -
Add migration version (eg. `[5.1]`) to all migration generators.
## 7.0.2 (2017-04-26)
### Breaking Changes
@ -31,7 +46,7 @@ recommendations of [keepachangelog.com](http://keepachangelog.com/).
### Fixed
- [#956](https://github.com/airblade/paper_trail/pull/956) -
Fix ActiveRecord >= 5.1 version check
Fix ActiveRecord >= 5.1 version check
## 7.0.1 (2017-04-10)

View File

@ -11,7 +11,7 @@ has been destroyed.
| Version | Documentation |
| -------------- | ------------- |
| Unreleased | https://github.com/airblade/paper_trail/blob/master/README.md |
| 7.0.2 | https://github.com/airblade/paper_trail/blob/v7.0.2/README.md |
| 7.0.3 | https://github.com/airblade/paper_trail/blob/v7.0.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 |
| 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 = 2
TINY = 3
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".").freeze