;update changelogs

This commit is contained in:
Simon Michael 2020-11-30 12:11:30 -08:00
parent 26dc66e118
commit 3aec8542db
5 changed files with 18 additions and 10 deletions

View File

@ -1,11 +1,10 @@
General/project-related changes in the hledger project.
For package-specific changes, see the package changelogs.
# 5eb69785
# ee026f54
- examples: clean up & add more budgeting examples
- examples: stripe csv
- The functional tests in tests/ have been moved into the respective

View File

@ -1,7 +1,7 @@
Internal/api/developer-ish changes in the hledger-lib (and hledger) packages.
For user-visible changes, see the hledger package changelog.
# 255d4753
# 16a212af
- added: journalApplyAliases, transactionApplyAliases, postingApplyAliases

View File

@ -1,9 +1,7 @@
User-visible changes in hledger-ui.
See also the hledger changelog.
# 9730b69a
# d40d53ae
- When entering a query with `/`, malformed queries/regular expressions
no longer cause the program to exit. (Stephen Morgan)

View File

@ -1,9 +1,7 @@
User-visible changes in hledger-web.
See also the hledger changelog.
# 5f9635c7
# d40d53ae
- 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,20 @@
User-visible changes in the hledger command line tool and library.
# 255d4753
# 26dc66e1
- strict mode: the new -s/--strict common flag requires that
all accounts and commodities are declared with directives.
- check: A new command which consolidating the various check-* commands.
It runs the default, strict, or specified checks and produces
no output and a zero exit code if all is well.
- check-dates: this command is deprecated and will be removed
in next release; use "hledger check ordereddates" instead.
- check-dupes: this command is deprecated and will be removed
in next release; use "hledger check uniqueleafnames" instead.
- csv, timedot, timeclock files now respect command line --alias options,
like journal files. (#859)