From 14d7c29808e635d6ea9a60e79d94fb93a335389a Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Tue, 15 Sep 2015 00:35:07 +0200 Subject: [PATCH 1/2] Rake task: Be able to set false value in config --- lib/github_changelog_generator/task.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 91176e917469a5c5eb0bc5c8205ef8d1c2a1c0e3 Mon Sep 17 00:00:00 2001 From: Petr Korolev Date: Tue, 15 Sep 2015 09:06:52 +0300 Subject: [PATCH 2/2] Update changelog for version 1.8.5 --- CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) 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)