diff --git a/CHANGES.md b/CHANGES.md index 0c7bb7ee0..f733c03ef 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,7 +1,10 @@ General/project-related changes in the hledger project. For package-specific changes, see the package changelogs. -# f39938d7 +# 5eb69785 + +- examples: clean up & add more budgeting examples + - examples: stripe csv diff --git a/hledger-lib/CHANGES.md b/hledger-lib/CHANGES.md index cc8f6188d..78c83927a 100644 --- a/hledger-lib/CHANGES.md +++ b/hledger-lib/CHANGES.md @@ -1,7 +1,11 @@ Internal/api/developer-ish changes in the hledger-lib (and hledger) packages. For user-visible changes, see the hledger package changelog. -# 3662977c +# 255d4753 + +- added: journalApplyAliases, transactionApplyAliases, postingApplyAliases + +- a new more robust price lookup implementation, fgl library dropped (#1402) - Reverted a stripAnsi change in 1.19.1 that caused a 3x slowdown of amount rendering in terminal reports. (#1350) diff --git a/hledger-ui/CHANGES.md b/hledger-ui/CHANGES.md index 041daa872..fcfe32e3e 100644 --- a/hledger-ui/CHANGES.md +++ b/hledger-ui/CHANGES.md @@ -1,7 +1,9 @@ User-visible changes in hledger-ui. See also the hledger changelog. -# 3662977c +# 9730b69a + + - When entering a query with `/`, malformed queries/regular expressions no longer cause the program to exit. (Stephen Morgan) diff --git a/hledger-web/CHANGES.md b/hledger-web/CHANGES.md index e460e2291..ca85d7a42 100644 --- a/hledger-web/CHANGES.md +++ b/hledger-web/CHANGES.md @@ -1,7 +1,9 @@ User-visible changes in hledger-web. See also the hledger changelog. -# 3662977c +# 5f9635c7 + + - Re-enable hledger-web's test suite, and include it in the main executable. hledger-web --test [-- HSPECARGS] runs it. diff --git a/hledger/CHANGES.md b/hledger/CHANGES.md index 4992dd27b..10d89f81d 100644 --- a/hledger/CHANGES.md +++ b/hledger/CHANGES.md @@ -1,7 +1,27 @@ User-visible changes in the hledger command line tool and library. -# 3662977c +# 255d4753 + +- csv, timedot, timeclock files now respect command line --alias options, + like journal files. (#859) + +- Market price lookup for value reports is now more robust, fixing several bugs + (and debug output is more informative). + There has been a slight change in functionality: when chaining prices, + we now prefer chains of all "forward" prices, even if longer, with chains + involving reverse prices being the last resort. + (#1402) + +- bal: improve budget, MultiBalanceReport debug output + Comply with debug levels policy, clarify some labels. + +- bal: support CSV output for --budget reports (#1155) + +- roi: TWR now handles same-day pnl changes and cashflows, + calculation failure messages have been improved, and + the documentation includes more detail and examples. + (#1398) (Dmitry Astapov) ## general