diff --git a/update_change_history.js b/update_change_history.js index 42f10002..a3328a4d 100644 --- a/update_change_history.js +++ b/update_change_history.js @@ -23,6 +23,9 @@ function parse(data) { if (line.startsWith('Module | Version')) { include = false; } + if (line.startsWith('[Release History]')) { + include = false; + } if (include && line !== '') { console.log(line.replace(/^\s*\* [0-9a-f]{7} /, '* ')); }