;doc: update changelogs

This commit is contained in:
Simon Michael 2024-01-28 01:24:42 -10:00
parent 65af4c344b
commit aa69eb188a
5 changed files with 46 additions and 0 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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