;doc: changelog updates

This commit is contained in:
Simon Michael 2020-12-29 10:21:27 -08:00
parent a5f9f8ce0c
commit 6f08631be3
5 changed files with 64 additions and 1 deletions

View File

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

View File

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

View File

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

View File

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

View File

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