Release 6.0.2

This commit is contained in:
Jared Beck 2016-12-13 23:09:50 -05:00
parent 8cc6138b28
commit 956fc170ea
3 changed files with 21 additions and 2 deletions

View File

@ -15,11 +15,30 @@ recommendations of [keepachangelog.com](http://keepachangelog.com/).
### Fixed
- None
## 6.0.2 (2016-12-13)
### Breaking Changes
- None
### Added
- None
### Fixed
- `88e513f` - Surprise argument modification bug in `where_object_changes`
- `c7efd62` - Column type-detection bug in `where_object_changes`
- [#905](https://github.com/airblade/paper_trail/pull/905) - Only invoke
`logger.warn` if `logger` instance exists
### Code Quality
- Improve Metrics/AbcSize from 30 to 22
- Improve Metrics/PerceivedComplexity from 10 to 9
## 6.0.1 (2016-12-04)
### Breaking Changes

View File

@ -11,7 +11,7 @@ has been destroyed.
| Version | Documentation |
| -------------- | ------------- |
| Unreleased | https://github.com/airblade/paper_trail/blob/master/README.md |
| 6.0.1 | https://github.com/airblade/paper_trail/blob/v6.0.1/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 |
| 3.0.9 | https://github.com/airblade/paper_trail/blob/v3.0.9/README.md |

View File

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