From 956fc170ea69a6b9c90b7f3545616d553aae6c8c Mon Sep 17 00:00:00 2001 From: Jared Beck Date: Tue, 13 Dec 2016 23:09:50 -0500 Subject: [PATCH] Release 6.0.2 --- CHANGELOG.md | 19 +++++++++++++++++++ README.md | 2 +- lib/paper_trail/version_number.rb | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a874883c..005dbe6b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 11a109d1d..c44c7ffbb 100644 --- a/README.md +++ b/README.md @@ -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 | diff --git a/lib/paper_trail/version_number.rb b/lib/paper_trail/version_number.rb index 158e6b633..1e86322c7 100644 --- a/lib/paper_trail/version_number.rb +++ b/lib/paper_trail/version_number.rb @@ -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