From 02e242c9b15b7b93fa0a4c5e8d0c9838e9c22da0 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Wed, 1 May 2024 23:19:26 -1000 Subject: [PATCH] ;doc: update changelogs --- CHANGES.md | 6 ++++-- hledger-lib/CHANGES.md | 3 ++- hledger-ui/CHANGES.md | 16 +++++++++++++--- hledger-web/CHANGES.md | 7 ++++++- hledger/CHANGES.md | 20 +++++++++++++++++++- 5 files changed, 44 insertions(+), 8 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index c3ae8989c..b3d7ded5f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -18,13 +18,15 @@ General changes in the hledger project. For package-specific changes, see the hledger package changelogs. -# 060528aac +# 8d62af8ae Docs - move release notes from site repo to the main hledger repo -- dev doc updates +- github release notes: improve windows install commands +- dev doc updates; new Developer FAQ, Contributor Quick Start updates - examples: shared finances +- examples: csv: vanguard, fidelity updates Scripts/addons diff --git a/hledger-lib/CHANGES.md b/hledger-lib/CHANGES.md index bd4e630bd..36c348c7e 100644 --- a/hledger-lib/CHANGES.md +++ b/hledger-lib/CHANGES.md @@ -21,7 +21,7 @@ Improvements Internal/api/developer-ish changes in the hledger-lib (and hledger) packages. For user-visible changes, see the hledger package changelog. -# 27d5f1455 +# 7525014c7 Breaking changes @@ -29,6 +29,7 @@ Fixes Improvements +- moved journalCheckBalanceAssertions to JournalChecks # 1.33 2024-04-18 diff --git a/hledger-ui/CHANGES.md b/hledger-ui/CHANGES.md index 99770b62b..b99acbe4b 100644 --- a/hledger-ui/CHANGES.md +++ b/hledger-ui/CHANGES.md @@ -21,23 +21,33 @@ API User-visible changes in hledger-ui. See also the hledger changelog. -# 4ae62a183 +# 7525014c7 Breaking changes Fixes +- Require vty-windows-0.2.0.2+ to avoid display problems in recent + MS Terminal on Windows. + +- We no longer require process >=1.6.19.0, as it hurt installability + and seems not strictly needed. + [#2149] + Features Improvements -- Require vty-windows-0.2.0.2+ to avoid display problems in recent - MS Terminal on Windows. +- When built with the ghcdebug flag and started with --debug=-1, + hledger-ui can be controlled by ghc-debug clients like + ghc-debug-brick or a ghc-debug query script, for analysing + memory/profile info. Docs API +[#2149]: https://github.com/simonmichael/hledger/issues/2149 # 1.33 2024-04-18 diff --git a/hledger-web/CHANGES.md b/hledger-web/CHANGES.md index 5d81df6b4..e06e2328b 100644 --- a/hledger-web/CHANGES.md +++ b/hledger-web/CHANGES.md @@ -21,7 +21,7 @@ API User-visible changes in hledger-web. See also the hledger changelog. -# 160bfff51 +# 4c53ab419 Breaking changes @@ -31,6 +31,11 @@ Features Improvements +- When built with the ghcdebug flag and started with --debug=-1, + hledger-web can be controlled by ghc-debug clients like + ghc-debug-brick or a ghc-debug query script, for analysing + memory/profile info. + - support base64 >=1.0 Docs diff --git a/hledger/CHANGES.md b/hledger/CHANGES.md index a384eca90..8f31999d8 100644 --- a/hledger/CHANGES.md +++ b/hledger/CHANGES.md @@ -23,12 +23,22 @@ API User-visible changes in the hledger command line tool and library. -# fbd26f67a +# 7525014c7 Breaking changes +- `check ordereddates` no longer supports `--date2`; it checks primary + dates only. + Fixes +- We no longer require process >=1.6.19.0, as it hurt installability + and seems not strictly needed. + [#2149] + +- `print` and `close` now show a trailing decimal mark on cost amounts also, + when needed to disambiguate a digit group mark. + - Balance commands's HTML output now includes digit group marks when appropriate (this broke in 1.25). [#2196] @@ -40,6 +50,14 @@ Features Improvements +- Correctness checks now run in a documented order. Commodities are + now checked before accounts, and tags before recentassertions. + +- When built with the `ghcdebug` flag and started with `--debug=-1`, + hledger can be controlled by ghc-debug clients like + ghc-debug-brick or a ghc-debug query script, for analysing + memory/profile info. + - Commands list cleanups; move the HELP and UIS sections to the top. Docs