Skip to content

Commit ff40fb2

Browse files
authored
Merge pull request #620 from dscho/drop-superseded-msys2-runtime-entries-from-the-release-notes
Drop superseded msys2 runtime entries from the release notes
2 parents 5211ac3 + 46b5841 commit ff40fb2

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

ReleaseNotes.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,7 @@ Git for Windows is distributed with other components yet, such as Bash, zlib, cu
4242
### New Features
4343

4444
* Comes with [MinTTY v3.7.8](https://github.com/mintty/mintty/releases/tag/3.7.8).
45-
* 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).
4645
* Comes with [OpenSSH v10.0.P1](https://github.com/openssh/openssh-portable/releases/tag/V_10_0_P1).
47-
* 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).
4846
* 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).
4947
* Comes with [cURL v8.14.0](https://curl.se/changes.html#8_14_0).
5048

add-release-note.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const addReleaseNote = (type, message) => {
4646

4747
// Remove any superseded entries
4848
if (type === 'feature') {
49-
const match = message.match(/^(Comes with \[[^\]]+ )(v|patch level)/)
49+
const match = message.match(/^(Comes with (?:\[[^\]]+|the MSYS2 runtime .*Cygwin) )(v|patch level)/)
5050
if (match) sections.feature = sections.feature.filter(e => !e.startsWith(`* ${match[1]}${match[2]}`))
5151
}
5252

0 commit comments

Comments
 (0)