diff --git a/CHANGELOG.md b/CHANGELOG.md index b5ec4f4..4310b72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## [1.8.5](https://github.com/skywinder/github-changelog-generator/tree/1.8.5) (2015-09-15) +[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.8.4...1.8.5) + +**Merged pull requests:** + +- Rake task: Be able to set false value in config [\#279](https://github.com/skywinder/github-changelog-generator/pull/279) ([olleolleolle](https://github.com/olleolleolle)) + ## [1.8.4](https://github.com/skywinder/github-changelog-generator/tree/1.8.4) (2015-09-01) [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.8.3...1.8.4) @@ -21,6 +28,10 @@ - Output should not include security information [\#270](https://github.com/skywinder/github-changelog-generator/issues/270) +**Merged pull requests:** + +- This PRi will fix \#274. [\#275](https://github.com/skywinder/github-changelog-generator/pull/275) ([skywinder](https://github.com/skywinder)) + ## [1.8.1](https://github.com/skywinder/github-changelog-generator/tree/1.8.1) (2015-08-25) [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.8.0...1.8.1) diff --git a/lib/github_changelog_generator/task.rb b/lib/github_changelog_generator/task.rb index 1e43a40..7ce2ecf 100644 --- a/lib/github_changelog_generator/task.rb +++ b/lib/github_changelog_generator/task.rb @@ -51,7 +51,7 @@ module GitHubChangelogGenerator OPTIONS.each do |o| v = instance_variable_get("@#{o}") - options[o.to_sym] = v if v + options[o.to_sym] = v unless v.nil? end generator = Generator.new options