From 7ace5ee5605e4a668e50dc0e620f7181a1cb46c6 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Thu, 7 Dec 2023 10:15:01 -1000 Subject: [PATCH] ;doc: changelogs for 1.32.1 --- hledger-lib/CHANGES.md | 4 ++++ hledger-ui/CHANGES.md | 5 ++++- hledger-web/CHANGES.md | 5 ++++- hledger/CHANGES.md | 20 ++++++++++++++++++++ 4 files changed, 32 insertions(+), 2 deletions(-) diff --git a/hledger-lib/CHANGES.md b/hledger-lib/CHANGES.md index 6a00ee877..d16db5598 100644 --- a/hledger-lib/CHANGES.md +++ b/hledger-lib/CHANGES.md @@ -13,6 +13,10 @@ Misc. changes Internal/api/developer-ish changes in the hledger-lib (and hledger) packages. For user-visible changes, see the hledger package changelog. +# 1.32.1 2023-12-07 + +- readFileStrictly is now provided by Hledger.Utils.IO + # 1.32 2023-12-01 Misc. changes diff --git a/hledger-ui/CHANGES.md b/hledger-ui/CHANGES.md index 58b38fe83..96a4ff34b 100644 --- a/hledger-ui/CHANGES.md +++ b/hledger-ui/CHANGES.md @@ -21,8 +21,11 @@ API User-visible changes in hledger-ui. See also the hledger changelog. -# 1.32 2023-12-01 +# 1.32.1 2023-12-07 +- Use hledger-1.32.1 + +# 1.32 2023-12-01 Fixes - The V key now preserves the valuation mode specified at the command diff --git a/hledger-web/CHANGES.md b/hledger-web/CHANGES.md index dbd974f30..3e2613943 100644 --- a/hledger-web/CHANGES.md +++ b/hledger-web/CHANGES.md @@ -21,8 +21,11 @@ API User-visible changes in hledger-web. See also the hledger changelog. -# 1.32 2023-12-01 +# 1.32.1 2023-12-07 +- Use hledger-1.32.1 + +# 1.32 2023-12-01 Features - The hledger-web app on the Sandstorm cloud platform has been updated to diff --git a/hledger/CHANGES.md b/hledger/CHANGES.md index 64d9fef8e..7748da7c9 100644 --- a/hledger/CHANGES.md +++ b/hledger/CHANGES.md @@ -21,6 +21,26 @@ API User-visible changes in the hledger command line tool and library. +# 1.32.1 2023-12-07 + +- Fixed: `import` with multiple files now updates .latest files correctly. (#2125) + +- Fixed: `print --round=hard` now properly pads/rounds amounts with inferred costs. (#2123) + +- CSV matcher syntax: mention that ! and & can't be used in the same line yet. (#2088) + +- Drop the "a difference of ..." line from balance assertion failure output. + I feel it made the message harder to read and isn't really necessary. + +- Declaring the empty payee name with `payee ""` now works, + to let `hledger check payees` accept payee-less transactions. + (#2119) + +- Built-in tags with special meaning like `type:` and `t:` are now implicitly declared, + so using type: in account declarations or generating t: with timedot letters + won't cause `hledger check tags` to fail. + (#2119) + # 1.32 2023-12-01 Breaking changes