From 256c9e6326e5ba37a3a151171c9a87031c90e289 Mon Sep 17 00:00:00 2001 From: Wilfred Hughes Date: Tue, 23 Sep 2025 20:24:08 -0700 Subject: [PATCH] Unfill lines when generating release notes --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 5a55f42e4..9380d882a 100644 --- a/justfile +++ b/justfile @@ -27,7 +27,7 @@ rel_notes: echo -e "Difftastic is a structural diff tool that understands syntax. See [the manual](https://difftastic.wilfred.me.uk/) to get started, and [the changelog](https://github.com/Wilfred/difftastic/blob/master/CHANGELOG.md) for historical changes.\n" - rg --max-count 1 -B 9999 "released " CHANGELOG.md | tail -n +3 | head -n -2 + rg --max-count 1 -B 9999 "released " CHANGELOG.md | tail -n +3 | head -n -2 | awk 'BEGIN{RS="\n\n"; ORS="\n\n"} {gsub(/\n/, " "); print}' man: pandoc --standalone --to man difft.1.md -o difft.1