;doc: changelogs for 1.32.1

This commit is contained in:
Simon Michael 2023-12-07 10:15:01 -10:00
parent 74cbbd152f
commit 7ace5ee560
4 changed files with 32 additions and 2 deletions

View File

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

View File

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

View File

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

View File

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