From 5ac33ee0dd5c0dd0561ca9b85e539e8b9d570f03 Mon Sep 17 00:00:00 2001 From: hobbyquaker Date: Sat, 4 Jan 2020 14:47:51 +0100 Subject: [PATCH] exclude release history link --- update_change_history.js | 3 +++ 1 file changed, 3 insertions(+) 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} /, '* ')); }