From aa69eb188a2d848c88cc503f6b297fdf274a910d Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Sun, 28 Jan 2024 01:24:42 -1000 Subject: [PATCH] ;doc: update changelogs --- CHANGES.md | 11 +++++++++++ hledger-lib/CHANGES.md | 8 ++++++++ hledger-ui/CHANGES.md | 6 ++++++ hledger-web/CHANGES.md | 4 ++++ hledger/CHANGES.md | 17 +++++++++++++++++ 5 files changed, 46 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index ab76d295c..581b924ea 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -20,6 +20,17 @@ General changes in the hledger project. For package-specific changes, see the hledger package changelogs. +# 1.32.3 2024-01-28 + +Scripts/addons + +- bin/hledger-bar: Fix an error when NO_COLOR is not defined; + allow color when NO_COLOR is defined but empty, per no-color spec; + and fix shellcheck warnings. + [#2159] (Colin Dean, Simon Michael) + +- bin/hledger-simplebal: Fix shellcheck warnings. (Colin Dean) + # 1.32.2 2023-12-31 Docs diff --git a/hledger-lib/CHANGES.md b/hledger-lib/CHANGES.md index 38a965120..c94f541ca 100644 --- a/hledger-lib/CHANGES.md +++ b/hledger-lib/CHANGES.md @@ -21,6 +21,14 @@ Improvements Internal/api/developer-ish changes in the hledger-lib (and hledger) packages. For user-visible changes, see the hledger package changelog. +# 1.32.3 2024-01-28 + +- Some API renames ended up in this release, including + + - amountStripPrices -> amountStripCost + - showAmountPrice -> showAmountCostB + - showAmountPriceDebug -> showAmountCostDebug + # 1.32.2 2023-12-31 Breaking changes diff --git a/hledger-ui/CHANGES.md b/hledger-ui/CHANGES.md index cac8f019c..4ff70c22e 100644 --- a/hledger-ui/CHANGES.md +++ b/hledger-ui/CHANGES.md @@ -21,6 +21,12 @@ API User-visible changes in hledger-ui. See also the hledger changelog. +# 1.32.3 2024-01-28 + +- Use hledger-1.32.3 + +- Allow vty 6.2, brick 2.3 + # 1.32.2 2023-12-31 Features diff --git a/hledger-web/CHANGES.md b/hledger-web/CHANGES.md index ec96eb0c1..5d594a6db 100644 --- a/hledger-web/CHANGES.md +++ b/hledger-web/CHANGES.md @@ -21,6 +21,10 @@ API User-visible changes in hledger-web. See also the hledger changelog. +# 1.32.3 2024-01-28 + +- Use hledger-1.32.3 + # 1.32.2 2023-12-31 Fixes diff --git a/hledger/CHANGES.md b/hledger/CHANGES.md index 16f98042b..7424b4802 100644 --- a/hledger/CHANGES.md +++ b/hledger/CHANGES.md @@ -21,6 +21,23 @@ API User-visible changes in the hledger command line tool and library. +# 1.32.3 2024-01-28 + +Fixes + +- A performance slowdown since 1.29, especially noticeable with many + accounts and transactions, has been fixed. [#2153] + +- Balance assertions involving mixed-cost balances are checked correctly again + (a regression in 1.30). [#2150] + +- import --catchup works again (a regression in 1.32). [#2156] + +- --anon is now a deprecated hidden flag that raises an error, + but is still usable as --obfuscate (also hidden). [#2133] + +- Balance assertion error messages are clearer, and show the diff again. + # 1.32.2 2023-12-31