From e6ef822e3f897995ad32d112679ea90288bfce6f Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Mon, 2 Jun 2025 11:13:39 +0200 Subject: [PATCH 1/2] ReleaseNotes: remove superseded MSYS2 runtime entries Signed-off-by: Johannes Schindelin --- ReleaseNotes.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/ReleaseNotes.md b/ReleaseNotes.md index bfebf33fff..dab8076d8f 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -42,9 +42,7 @@ Git for Windows is distributed with other components yet, such as Bash, zlib, cu ### New Features * Comes with [MinTTY v3.7.8](https://github.com/mintty/mintty/releases/tag/3.7.8). -* Comes with the MSYS2 runtime (Git for Windows flavor) based on [Cygwin v3.6.0](https://cygwin.com/pipermail/cygwin-announce/2025-March/012224.html). * Comes with [OpenSSH v10.0.P1](https://github.com/openssh/openssh-portable/releases/tag/V_10_0_P1). -* Comes with the MSYS2 runtime (Git for Windows flavor) based on [Cygwin v3.6.1](https://cygwin.com/pipermail/cygwin-announce/2025-April/012266.html). * Comes with the MSYS2 runtime (Git for Windows flavor) based on [Cygwin v3.6.2](https://cygwin.com/pipermail/cygwin-announce/2025-May/012350.html). * Comes with [cURL v8.14.0](https://curl.se/changes.html#8_14_0). From 46b584108a03f895b5b1fb5998cf78c57e6d2e67 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Mon, 2 Jun 2025 11:15:55 +0200 Subject: [PATCH 2/2] add-release-note: do remove superseded MSYS2 runtime entries Signed-off-by: Johannes Schindelin --- add-release-note.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/add-release-note.js b/add-release-note.js index 113089c95e..839cb95f6b 100644 --- a/add-release-note.js +++ b/add-release-note.js @@ -46,7 +46,7 @@ const addReleaseNote = (type, message) => { // Remove any superseded entries if (type === 'feature') { - const match = message.match(/^(Comes with \[[^\]]+ )(v|patch level)/) + const match = message.match(/^(Comes with (?:\[[^\]]+|the MSYS2 runtime .*Cygwin) )(v|patch level)/) if (match) sections.feature = sections.feature.filter(e => !e.startsWith(`* ${match[1]}${match[2]}`)) }