forked from fish-shell/fish-shell
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add closed issues and PRs to 3.8 changelog
I used below script to list all GitHub issues and PRs that are not yet mentioned in the changelog. It's almost empty now. While at it, curate the "notable" section and move some entries around, notably from "interactive improvements" to "bindings". ```shell ms="fish next-3.x" { gh issue list --state closed --milestone "$ms" -L 500 gh pr list --state all --search "milestone:\"$ms\"" -L 500 } | sort -n | while IFS=' ' read line; do set -- $line grep -qE '\W'$1 CHANGELOG.rst || echo https://github.com/fish-shell/fish-shell/issues/$1 "$line" done ```
- Loading branch information
Showing
1 changed file
with
41 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters