Skip to content

Commit cc30332

Browse files
committed
Updated CHANGELOG
1 parent 23b1685 commit cc30332

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ All major and minor version changes will be documented in this file. Details of
1313

1414
## Details
1515

16+
### [9.39.0] - 2022-06-09
17+
- Added 'ELF Info' operation [@n1073645] | [#1364]
18+
1619
### [9.38.0] - 2022-05-30
1720
- Added 'Parse TCP' operation [@n1474335] | [a895d1d]
1821

@@ -291,6 +294,7 @@ All major and minor version changes will be documented in this file. Details of
291294

292295

293296

297+
[9.39.0]: https://github.com/gchq/CyberChef/releases/tag/v9.39.0
294298
[9.38.0]: https://github.com/gchq/CyberChef/releases/tag/v9.38.0
295299
[9.37.0]: https://github.com/gchq/CyberChef/releases/tag/v9.37.0
296300
[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
508512
[#1244]: https://github.com/gchq/CyberChef/pull/1244
509513
[#1313]: https://github.com/gchq/CyberChef/pull/1313
510514
[#1326]: https://github.com/gchq/CyberChef/pull/1326
515+
[#1364]: https://github.com/gchq/CyberChef/pull/1364

src/core/config/scripts/newMinorVersion.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ const getFeature = function() {
131131

132132
// PR IDs
133133
prIDs.forEach(prID => {
134-
changelogData = changelogData.replace(/(\n\[#[^\]]+\]: https:\/\/github.com\/gchq\/CyberChef\/pull\/[^\n]+\n)\n/, "$1" + prID + "\n\n");
134+
changelogData = changelogData.replace(/(\n\[#[^\]]+\]: https:\/\/github.com\/gchq\/CyberChef\/pull\/[^\n]+\n)\n*$/, "$1" + prID + "\n\n");
135135
});
136136

137137
fs.writeFileSync(path.join(process.cwd(), "CHANGELOG.md"), changelogData);

0 commit comments

Comments
 (0)