From 0aef51d725afbe0c25e0c7af9e79082e4b0a27b4 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Sun, 29 Apr 2018 11:56:46 -0700 Subject: [PATCH] changelogs --- hledger-api/CHANGES | 5 +++++ hledger-lib/CHANGES | 9 +++++++++ hledger-ui/CHANGES | 5 +++++ hledger-web/CHANGES | 10 ++++++++++ hledger/CHANGES | 44 ++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 73 insertions(+) diff --git a/hledger-api/CHANGES b/hledger-api/CHANGES index df5477986..cb73fa554 100644 --- a/hledger-api/CHANGES +++ b/hledger-api/CHANGES @@ -1,6 +1,11 @@ User-visible changes in hledger-api. See also hledger, hledger-lib. +# 1.9.1 (2018/4/30) + +* use hledger-lib 1.9.1 + + # 1.9 (2018/3/31) * support ghc 8.4, latest deps diff --git a/hledger-lib/CHANGES b/hledger-lib/CHANGES index e405da75b..716f53ad2 100644 --- a/hledger-lib/CHANGES +++ b/hledger-lib/CHANGES @@ -2,6 +2,15 @@ API-ish changes in the hledger-lib package. Most user-visible changes are noted in the hledger changelog, instead. +# 1.9.1 (2018/4/30) + +* new generic PeriodicReport, and some report-related type aliases + +* new BudgetReport + +* make (readJournal|tryReader)s?WithOpts the default api, dropping "WithOpts" + + # 1.9 (2018/3/31) * support ghc 8.4, latest deps diff --git a/hledger-ui/CHANGES b/hledger-ui/CHANGES index ae6ba991a..15f64e3cd 100644 --- a/hledger-ui/CHANGES +++ b/hledger-ui/CHANGES @@ -1,6 +1,11 @@ User-visible changes in hledger-ui. See also hledger, hledger-lib. +# 1.9.1 (2018/4/30) + +* use hledger-lib 1.9.1 + + # 1.9 (2018/3/31) * support ghc 8.4, latest deps diff --git a/hledger-web/CHANGES b/hledger-web/CHANGES index 468f009b3..12e2642f3 100644 --- a/hledger-web/CHANGES +++ b/hledger-web/CHANGES @@ -1,6 +1,16 @@ User-visible changes in hledger-web. See also hledger, hledger-lib. +# 1.9.2 (2018/4/30) + +* use hledger-lib 1.9.1 + + +# 1.9.1 (2018/4/13) + +* fix compilation with yesod < 1.6 + + # 1.9 (2018/3/31) * support ghc 8.4, latest deps diff --git a/hledger/CHANGES b/hledger/CHANGES index fa2e7d551..14b4fee63 100644 --- a/hledger/CHANGES +++ b/hledger/CHANGES @@ -1,6 +1,50 @@ User-visible changes in the hledger command line tool. +# 1.9.1 (2018/4/30) + +* use hledger-lib 1.9.1 + +* budget (balance --budget): budgets can be built from periodic + transactions with different intervals again. In 1.9, budgets were + restricted to a single interval, but this was a mistake. This + restores the 1.5 behaviour. + +* budget: budget reports are more intuitive and much less likely to + produce no output. + +* budget: when no report interval is specified, a budget report for + the whole journal period is shown. + +* budget: periodic transactions and the requested report period can + each have their own start/end dates, and the resulting report will + span the union of those periods, showing zeroes where data is + missing. + +* budget: total row and total/average columns are now calculated correctly + +* budget: actual, percentage, and goal amounts are now aligned in + columns for better readability (usually, unless numbers get huge). + +* budget: combining --budget and --sort-amount is not yet supported + and now gives an error. + +* csv: handle "-%amount" in a rule when the CSV amount is parenthesised (#736) + +* journal: automated postings are now generated early, before journal finalisation, + so they are present for amount inference, transaction balancing, and balance assertions + (#729) + +* cli: command-line account aliases are now applied early, before journal finalisation, + so they are equivalent to alias directives in the journal (#730) + +* journal: inferred amounts now have the appropriate standard amount style applied + (setting the precision correctly, eg). (#737) + +* journal: when checking for balanced transactions, amount styles declared with + commodity directives are also used (previously only inferred amount styles were). + + # 1.9 (2018/3/31) * support ghc 8.4, latest deps