From cc3033266c6a5e521ec2af00a50a491ada72cd65 Mon Sep 17 00:00:00 2001 From: n1474335 Date: Thu, 9 Jun 2022 15:17:08 +0100 Subject: [PATCH] Updated CHANGELOG --- CHANGELOG.md | 5 +++++ src/core/config/scripts/newMinorVersion.mjs | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ad241ed..af8843e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,9 @@ All major and minor version changes will be documented in this file. Details of ## Details +### [9.39.0] - 2022-06-09 +- Added 'ELF Info' operation [@n1073645] | [#1364] + ### [9.38.0] - 2022-05-30 - Added 'Parse TCP' operation [@n1474335] | [a895d1d] @@ -291,6 +294,7 @@ All major and minor version changes will be documented in this file. Details of +[9.39.0]: https://github.com/gchq/CyberChef/releases/tag/v9.39.0 [9.38.0]: https://github.com/gchq/CyberChef/releases/tag/v9.38.0 [9.37.0]: https://github.com/gchq/CyberChef/releases/tag/v9.37.0 [9.36.0]: https://github.com/gchq/CyberChef/releases/tag/v9.36.0 @@ -508,3 +512,4 @@ All major and minor version changes will be documented in this file. Details of [#1244]: https://github.com/gchq/CyberChef/pull/1244 [#1313]: https://github.com/gchq/CyberChef/pull/1313 [#1326]: https://github.com/gchq/CyberChef/pull/1326 +[#1364]: https://github.com/gchq/CyberChef/pull/1364 diff --git a/src/core/config/scripts/newMinorVersion.mjs b/src/core/config/scripts/newMinorVersion.mjs index e1a682f7..adfdf6f7 100644 --- a/src/core/config/scripts/newMinorVersion.mjs +++ b/src/core/config/scripts/newMinorVersion.mjs @@ -131,7 +131,7 @@ const getFeature = function() { // PR IDs prIDs.forEach(prID => { - changelogData = changelogData.replace(/(\n\[#[^\]]+\]: https:\/\/github.com\/gchq\/CyberChef\/pull\/[^\n]+\n)\n/, "$1" + prID + "\n\n"); + changelogData = changelogData.replace(/(\n\[#[^\]]+\]: https:\/\/github.com\/gchq\/CyberChef\/pull\/[^\n]+\n)\n*$/, "$1" + prID + "\n\n"); }); fs.writeFileSync(path.join(process.cwd(), "CHANGELOG.md"), changelogData);