From 6edb86e33edca11679a31396b3bc96418c7f83d4 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Sat, 10 Dec 2016 08:53:37 -0800 Subject: [PATCH] doc: changelog tweaks --- doc/CHANGES | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/doc/CHANGES b/doc/CHANGES index 7b5790cc5..8454ede55 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -94,18 +94,15 @@ See also the package change logs. ## ledger format -- add an alternate reader for C++ Ledger journals, based on ledger-parse from the ledger4 project. +- use ledger-parse from the ledger4 project as an alternate reader for C++ Ledger journals - This reader is not used automatically, you must select it with a `ledger:` prefix. - Currently only the bare minimum of the raw parsed data is used: - transaction dates/descriptions and posting accounts/amounts, - with the rest being ignored. - - Amounts are parsed the same way as in the hledger journal format. - Malformed amounts might be ignored instead of error-reported. + The idea is that some day we might get better compatibility with Ledger files this way. + Right now this reader is not very useful and will be used only if you explicitly select it with a `ledger:` prefix. + It parses transaction dates, descriptions, accounts and amounts, and ignores everything else. + Amount parsing is delegated to hledger's journal parser, and malformed amounts might be silently ignored. - This adds some or all of these as new dependencies for hledger-lib: - parsers, parsec, attoparsec, trifecta + This adds at least some of the following as new dependencies for hledger-lib: + parsers, parsec, attoparsec, trifecta. # 1.0.1 (2016/10/27)