From 4965046a3a4d75434e927cb8c06eff1f03938b94 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Fri, 21 Nov 2025 10:46:33 -1000 Subject: [PATCH] ;tools: just rels-major --- Justfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Justfile b/Justfile index 1159084da..708c71301 100644 --- a/Justfile +++ b/Justfile @@ -1206,6 +1206,10 @@ tags: @rels: awk '/^#+ +[0-9]+\.[0-9].*([0-9]{4}-[0-9]{2}-[0-9]{2})/{printf "%s %s\n",$3,$2}' hledger/CHANGES.md +# Show major release dates and versions (of the hledger package). +@rels-major: + awk '/^#+ +[0-9]+\.[0-9]+ .*([0-9]{4}-[0-9]{2}-[0-9]{2})/{printf "%s %s\n",$3,$2}' hledger/CHANGES.md + # Show the release notes for VERSION. @showrelnotes VER: awk "/^## .*-${VER//./\\.}$/ {p=1;print;next}; /^## / {p=0}; p" doc/relnotes.md