From 6f08631be3e1fb6619770f5a63128825e0380a7c Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Tue, 29 Dec 2020 10:21:27 -0800 Subject: [PATCH] ;doc: changelog updates --- CHANGES.md | 8 +++++++- hledger-lib/CHANGES.md | 10 ++++++++++ hledger-ui/CHANGES.md | 4 ++++ hledger-web/CHANGES.md | 2 ++ hledger/CHANGES.md | 41 +++++++++++++++++++++++++++++++++++++++++ 5 files changed, 64 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 81b1715cc..b3c25cbc3 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,9 +1,15 @@ General project-related changes and major/notable all-package releases. For package-specific changes and minor releases, see the package changelogs. -# 3728ac2e9 +# a5f9f8ce0 + +- doc: merge file format manuals into the hledger manual + Also flatten the journal manual topics a bit. + +- doc: rewrite commands intro # 1.20 2020-12-05 + - examples: clean up & add more budgeting examples - examples: stripe csv diff --git a/hledger-lib/CHANGES.md b/hledger-lib/CHANGES.md index ed22efbff..a65927ffd 100644 --- a/hledger-lib/CHANGES.md +++ b/hledger-lib/CHANGES.md @@ -1,6 +1,16 @@ Internal/api/developer-ish changes in the hledger-lib (and hledger) packages. For user-visible changes, see the hledger package changelog. +# a5f9f8ce0 + +- Removed: + valuationTypeIsCost + valuationTypeIsDefaultValue + ValuationType's AtDefault constructor + +- Changed: + *ApplyValuation functions take two less arguments + # 1.20.2 2020-12-28 - Fix the info manuals' node structure. diff --git a/hledger-ui/CHANGES.md b/hledger-ui/CHANGES.md index a0661c383..ded23468d 100644 --- a/hledger-ui/CHANGES.md +++ b/hledger-ui/CHANGES.md @@ -1,6 +1,10 @@ User-visible changes in hledger-ui. See also the hledger changelog. +# a5f9f8ce0 + +- Do valuation for all valuation types, not just AtCost and AtDefault. (Stephen Morgan) + # 1.20.2 2020-12-28 - Fix loss of capitalisation in part of the manual. diff --git a/hledger-web/CHANGES.md b/hledger-web/CHANGES.md index 922293b82..7049a31f5 100644 --- a/hledger-web/CHANGES.md +++ b/hledger-web/CHANGES.md @@ -1,6 +1,8 @@ User-visible changes in hledger-web. See also the hledger changelog. +# a5f9f8ce0 + # 1.20.2 2020-12-28 - Fix the info manual's node structure. diff --git a/hledger/CHANGES.md b/hledger/CHANGES.md index 3cef5c0cc..9c5af8543 100644 --- a/hledger/CHANGES.md +++ b/hledger/CHANGES.md @@ -1,6 +1,47 @@ User-visible changes in the hledger command line tool and library. +# a5f9f8ce0 + +- The --help/-h and --version flags are no longer position-sensitive; + if there is a command argument, they now always refer to the command + (where applicable). + +- The new --info flag opens the hledger info manual, if "info" is in $PATH. + "hledger COMMAND --info" will open COMMAND's info node. + +- The new --man flag opens the hledger man page, if "man" is in $PATH. + "hledger COMMAND --man" will scroll the page to CMD's section, if "less" + is in $PATH. (We force the use of "less" in this case, overriding any + $PAGER or $MAN_PAGER setting.) + +- help: show only the hledger manual + +- help: replace --info/--man/--pager flags with -i/-m/-p; drop --cat + +- help: with a TOPIC argument, it will open the manual at TOPIC + (any heading or heading prefix, case insensitive) if possible + (cf --man/--info). + +- drop deprecated command aliases: a, b, p, r, txns + +- hide deprecated command alias: equity + +- doc: merge file format manuals into the hledger manual + Also flatten the journal manual topics a bit. + +- doc: sync/update manual & cli command lists + +- doc: reorganise/flatten hledger manual, rewrite commands section + +- Valuation has changed: -V is now always equivalent to --value=end. (Stephen Morgan) + +- Include empty columns in MultiBalanceReports. (Stephen Morgan) + This was previously done for CompoundBalanceReport and when --empty was + called; this makes the behaviour consistent. + +- Include market price directives when calculating journal end date. (Stephen Morgan) + # 1.20.2 2020-12-28 - help: Fix loss of capitalisation in part of the hledger-ui manual.