Release 8.1.1

This commit is contained in:
Jared Beck 2017-12-10 21:14:23 -05:00
parent f65f907105
commit 582770c2f4
3 changed files with 17 additions and 2 deletions

View File

@ -26,6 +26,21 @@ recommendations of [keepachangelog.com](http://keepachangelog.com/).
- None
## 8.1.1 (2017-12-10)
### Breaking Changes
- None
### Added
- None
### Fixed
- [#1018](https://github.com/airblade/paper_trail/pull/1018)
Serializing postgres arrays
## 8.1.0 (2017-11-30)
### Breaking Changes

View File

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