Merge branch 'release/1.8.4'

This commit is contained in:
Petr Korolev 2015-09-01 09:13:40 +03:00
commit 72f993fab5
2 changed files with 9 additions and 4 deletions

View File

@ -22,15 +22,20 @@ module GitHubChangelogGenerator
exit
end
print_options(options)
options
end
# @param [Hash] options to display
def self.print_options(options)
if options[:verbose]
Helper.log.info "Performing task with options:"
options_to_display = options
options_to_display = options.clone
options_to_display[:token] = options_to_display[:token].nil? ? nil : "hidden value"
pp options_to_display
puts ""
end
options
end
# setup parsing options

View File

@ -1,3 +1,3 @@
module GitHubChangelogGenerator
VERSION = "1.8.3"
VERSION = "1.8.4"
end