summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-08-12 19:01:57 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-08-12 19:02:55 +0900
commit066a3498c6b7d1218b51f19c4b26447a56523aef (patch)
tree6757d439ca60f760cff8f2e3a803b75b15c63893 /tool
parent5edf921e9bce453b6a68040340940489bf350cc4 (diff)
Include commits notes in ChangeLog
Diffstat (limited to 'tool')
-rw-r--r--tool/lib/vcs.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/lib/vcs.rb b/tool/lib/vcs.rb
index 2ecbfbed44..dc407dd9a2 100644
--- a/tool/lib/vcs.rb
+++ b/tool/lib/vcs.rb
@@ -569,7 +569,7 @@ class VCS
end
range = [from, (to || 'HEAD')].join('^..')
cmd_pipe({'TZ' => 'JST-9', 'LANG' => 'C', 'LC_ALL' => 'C'},
- %W"#{COMMAND} log --format=medium --no-notes --date=iso-local --topo-order #{range}", "rb") do |r|
+ %W"#{COMMAND} log --format=medium --notes=commits --date=iso-local --topo-order #{range}", "rb") do |r|
format_changelog(r, path)
end
end