Release 7.1.2

This commit is contained in:
Jared Beck 2017-08-30 21:12:03 -04:00
parent 935999d03a
commit 87e752e825
3 changed files with 18 additions and 4 deletions

View File

@ -15,8 +15,22 @@ recommendations of [keepachangelog.com](http://keepachangelog.com/).
### Fixed
- [#985](https://github.com/airblade/paper_trail/pull/985) - Fix RecordInvalid error on nil item
association when belongs_to_required_by_default is enabled.
- None
## 7.1.2 (2017-08-30)
### Breaking Changes
- None
### Added
- None
### Fixed
- [#985](https://github.com/airblade/paper_trail/pull/985) - Fix RecordInvalid
error on nil item association when belongs_to_required_by_default is enabled.
## 7.1.1 (2017-08-18)

View File

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