Skip to content

Adapt to renamed release notes files #607

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Git for Windows v2.48.1 was the last version to ship with the i686 ("32-bit") va

### New Features

* Comes with [Git v2.49.0](https://github.com/git/git/blob/v2.49.0/Documentation/RelNotes/2.49.0.txt).
* Comes with [Git v2.49.0](https://github.com/git/git/blob/v2.49.0/Documentation/RelNotes/2.49.0.adoc).
* Comes with [OpenSSH v9.9.P2](https://github.com/openssh/openssh-portable/releases/tag/V_9_9_P2).
* Comes with [PCRE2 v10.45](https://github.com/PCRE2Project/pcre2/releases/tag/pcre2-10.45).
* The previously-experimental `--full-name-hash` option has been accepted into upstream Git as `--name-hash-version=2` and is no longer experimental.
Expand Down
4 changes: 2 additions & 2 deletions please.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2689,8 +2689,8 @@ finalize () { # [--delete-existing-tag] <what, e.g. release-notes>
"$sdk64"/usr/src/build-extra/ReleaseNotes.md
then
url=https://github.com/git/git/blob/$v &&
txt="$(echo "${v#v}" | sed 's/-rc[0-9]*$//').txt" &&
url=$url/Documentation/RelNotes/$txt &&
adoc="$(echo "${v#v}" | sed 's/-rc[0-9]*$//').adoc" &&
url=$url/Documentation/RelNotes/$adoc &&
mention feature 'Comes with [Git '$v']('$url').'
fi ||
die "Could not mention that Git was upgraded to $v\n"
Expand Down