;update changelogs

This commit is contained in:
Simon Michael 2020-11-24 09:39:05 -08:00
parent 255d475380
commit 794c5f32a5
5 changed files with 36 additions and 5 deletions

View File

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

View File

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

View File

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

View File

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

View File

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