diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index 70639f6..756d971 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -11,6 +11,10 @@ Lint/ImplicitStringConcatenation: Exclude: - 'lib/github_changelog_generator/parser.rb' +# Offense count: 14 +Metrics/AbcSize: + Enabled: false + # Offense count: 1 Metrics/CyclomaticComplexity: Max: 7 @@ -18,3 +22,30 @@ Metrics/CyclomaticComplexity: # Offense count: 2 Metrics/PerceivedComplexity: Max: 8 + +# Offense count: 1 +Style/AccessorMethodName: + Enabled: false + +# Offense count: 10 +Style/Documentation: + Enabled: false + +# Offense count: 1 +# Configuration parameters: MinBodyLength. +Style/GuardClause: + Enabled: false + +# Offense count: 2 +# Cop supports --auto-correct. +# Configuration parameters: EnforcedStyle, MinBodyLength, SupportedStyles. +# SupportedStyles: skip_modifier_ifs, always +Style/Next: + Enabled: false + +# Offense count: 3 +# Cop supports --auto-correct. +# Configuration parameters: EnforcedStyle, SupportedStyles, AllowInnerSlashes. +# SupportedStyles: slashes, percent_r, mixed +Style/RegexpLiteral: + Enabled: false diff --git a/CHANGELOG.md b/CHANGELOG.md index 79cd282..67a645a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,18 @@ # Change Log -## [v1.11.0](https://github.com/skywinder/github-changelog-generator/tree/v1.11.0) (2016-02-23) -[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.11.1...v1.11.0) +## [Unreleased](https://github.com/skywinder/github-changelog-generator/tree/HEAD) -## [1.11.1](https://github.com/skywinder/github-changelog-generator/tree/1.11.1) (2016-02-23) -[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.10.1...1.11.1) +[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.10.2...HEAD) + +**Fixed bugs:** + +- Getting an error on install [\#329](https://github.com/skywinder/github-changelog-generator/issues/329) + +## [1.10.2](https://github.com/skywinder/github-changelog-generator/tree/1.10.2) (2016-02-23) +[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/v1.11.0...1.10.2) + +## [v1.11.0](https://github.com/skywinder/github-changelog-generator/tree/v1.11.0) (2016-02-23) +[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.10.1...v1.11.0) **Implemented enhancements:** diff --git a/Gemfile.lock b/Gemfile.lock index c45a0ec..e386917 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - github_changelog_generator (1.10.1) + github_changelog_generator (1.10.2) colorize (~> 0.7) github_api (~> 0.12)