diff --git a/CHANGES.md b/CHANGES.md index 3cdb1f3de28..8bcbd70f6a4 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -21,10 +21,18 @@ For package-specific changes, see the hledger package changelogs. # 1.32.3 2024-01-28 -- ;pkg: bump version to 1.32.3 -- fix:pkg:include hledger-ui.exe in release binaries +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 - Added: diff --git a/hledger-lib/CHANGES.md b/hledger-lib/CHANGES.md index bcd515678bc..41a81772ad6 100644 --- a/hledger-lib/CHANGES.md +++ b/hledger-lib/CHANGES.md @@ -16,16 +16,15 @@ 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 -- ;doc: update manuals -- ;cabal: update cabal files +- Some API renames ended up in this release, including -- ;pkg: bump version to 1.32.3 + - amountStripPrices -> amountStripCost + - showAmountPrice -> showAmountCostB + - showAmountPriceDebug -> showAmountCostDebug -- fix: check mixed-cost balances correctly again (#2150, #2137) - Fixes a latent bug exposed by 1.30's fix for #2039. - This is a minimal backport of the fix from master, for 1.32.3. # 1.32.2 2023-12-31 + Breaking changes - In Hledger.Data.Amount, noPrice is renamed to noCost. diff --git a/hledger-ui/CHANGES.md b/hledger-ui/CHANGES.md index 50846a80c3a..d4532da4539 100644 --- a/hledger-ui/CHANGES.md +++ b/hledger-ui/CHANGES.md @@ -22,12 +22,13 @@ User-visible changes in hledger-ui. See also the hledger changelog. # 1.32.3 2024-01-28 -- ;doc: update manuals -- ;cabal: update cabal files +- Use hledger-1.32.3 + +- Allow vty 6.2, brick 2.3 -- ;pkg: bump version to 1.32.3 # 1.32.2 2023-12-31 + Features - hledger-ui is now available on Windows (ShrykeWindgrace) diff --git a/hledger-web/CHANGES.md b/hledger-web/CHANGES.md index 0be919d9bcc..16844c7d53c 100644 --- a/hledger-web/CHANGES.md +++ b/hledger-web/CHANGES.md @@ -22,12 +22,11 @@ User-visible changes in hledger-web. See also the hledger changelog. # 1.32.3 2024-01-28 -- ;doc: update manuals -- ;cabal: update cabal files +- Use hledger-1.32.3 -- ;pkg: bump version to 1.32.3 # 1.32.2 2023-12-31 + Fixes - The --base-url option works again. [#2127], [#2100] diff --git a/hledger/CHANGES.md b/hledger/CHANGES.md index 1108c0193ee..109686e33e1 100644 --- a/hledger/CHANGES.md +++ b/hledger/CHANGES.md @@ -22,16 +22,25 @@ User-visible changes in the hledger command line tool and library. # 1.32.3 2024-01-28 -- ;doc: update manuals -- ;cabal: update cabal files +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. -- ;pkg: bump version to 1.32.3 -- fix: check mixed-cost balances correctly again (#2150, #2137) - Fixes a latent bug exposed by 1.30's fix for #2039. - This is a minimal backport of the fix from master, for 1.32.3. # 1.32.2 2023-12-31 + Fixes - In CSV field assignments, %FIELD interpolation and `\n` can be used together again. [#2134]