;doc: merge change docs from 1.51.1
This commit is contained in:
parent
81846aa747
commit
82cf87c61b
11
doc/ANNOUNCE
11
doc/ANNOUNCE
@ -1,11 +1,8 @@
|
||||
Following on the heels of 1.50.4, hledger-1.51 brings some small improvements and many doc updates.
|
||||
Brought to you by Simon Michael, Caleb Maclennan, Joschua Kesper, Sam Almahri, and Ooker.
|
||||
hledger-1.51.1 fixes breakage with relative include paths in sym-linked files,
|
||||
caused by 1.50.4's fixes (and a few other things).
|
||||
|
||||
Best,
|
||||
-Simon
|
||||
|
||||
- https://github.com/simonmichael/hledger/releases/1.51
|
||||
- https://hledger.org/relnotes.html#2025-12-05-hledger-151
|
||||
- https://github.com/simonmichael/hledger/releases/1.51.1
|
||||
- https://hledger.org/relnotes.html#2025-12-08-hledger-1511
|
||||
- https://hledger.org/install
|
||||
|
||||
hledger is free, robust, friendly, multicurrency, double-entry,
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
hledger-1.51, following on the heels of 1.50.4, brings some small improvements and many doc updates.
|
||||
Brought to you by Simon Michael, Caleb Maclennan, Joschua Kesper, Sam Almahri, and Ooker.
|
||||
hledger-1.51.1 fixes breakage with relative include paths in sym-linked files,
|
||||
caused by 1.50.4's fixes (and a few other things).
|
||||
|
||||
- https://github.com/simonmichael/hledger/releases/1.51
|
||||
- https://hledger.org/relnotes.html#2025-12-05-hledger-151
|
||||
- https://github.com/simonmichael/hledger/releases/1.51.1
|
||||
- https://hledger.org/relnotes.html#2025-12-08-hledger-1511
|
||||
- https://hledger.org/install
|
||||
|
||||
#hledger is free, robust, friendly, multicurrency, double-entry,
|
||||
|
||||
@ -18,6 +18,8 @@ General changes in the hledger project.
|
||||
For package-specific changes, see the hledger package changelogs.
|
||||
|
||||
|
||||
# 1.51.1 2025-12-08
|
||||
|
||||
# 1.51 2025-12-05
|
||||
|
||||
Docs updated
|
||||
|
||||
@ -73,6 +73,57 @@ Major releases and user-visible changes, collected from the changelogs (
|
||||
|
||||
|
||||
|
||||
## 2025-12-08 hledger-1.51.1
|
||||
|
||||
### hledger 1.51.1
|
||||
|
||||
|
||||
Fixes
|
||||
|
||||
- Relative includes from a symbolically-linked journal file now work again.
|
||||
This was fallout from 1.50.4's fixes.
|
||||
[#2503]
|
||||
|
||||
- When journal's include directive has an IO error, like trying to
|
||||
include an existing but unreadable file, or failing to find a home
|
||||
directory when expanding ~, it now shows the problematic include
|
||||
directive (previously the line number was off by one).
|
||||
|
||||
- `aregister`: respect the order of -f options when showing same-day transactions from multiple files.
|
||||
If transactions on the same date are coming from two files specified
|
||||
with -f options, we expect them to be displayed in parse order, ie
|
||||
respecting the order of the -f options. This wasn't always the case,
|
||||
now it is.
|
||||
|
||||
- `aregister`: show "ACCTPAT matches no account" error on just one line.
|
||||
|
||||
- Fix build failures with the scripts in bin/.
|
||||
(Dmitry Astapov, [#2497])
|
||||
|
||||
[#2503]: https://github.com/simonmichael/hledger/issues/2503
|
||||
[#2497]: https://github.com/simonmichael/hledger/issues/2497
|
||||
|
||||
|
||||
### hledger-ui 1.51.1
|
||||
|
||||
|
||||
- Uses hledger 1.51.1.
|
||||
|
||||
|
||||
### hledger-web 1.51.1
|
||||
|
||||
|
||||
- Uses hledger 1.51.1.
|
||||
|
||||
|
||||
### credits 1.51.1
|
||||
|
||||
|
||||
Simon Michael,
|
||||
Dmitry Astapov,
|
||||
|
||||
|
||||
|
||||
## 2025-12-05 hledger-1.51
|
||||
|
||||
**Small improvements, doc updates**
|
||||
|
||||
@ -17,6 +17,9 @@ API/developer-ish changes in hledger-lib.
|
||||
For user-visible changes, see the hledger package changelog.
|
||||
|
||||
|
||||
# 1.51.1 2025-12-08
|
||||
|
||||
|
||||
# 1.51 2025-12-05
|
||||
|
||||
Breaking changes
|
||||
|
||||
@ -23,6 +23,11 @@ User-visible changes in hledger-ui.
|
||||
See also the hledger changelog.
|
||||
|
||||
|
||||
# 1.51.1 2025-12-08
|
||||
|
||||
- Uses hledger 1.51.1.
|
||||
|
||||
|
||||
# 1.51 2025-12-05
|
||||
|
||||
Improvements
|
||||
|
||||
@ -23,6 +23,11 @@ User-visible changes in hledger-web.
|
||||
See also the hledger changelog.
|
||||
|
||||
|
||||
# 1.51.1 2025-12-08
|
||||
|
||||
- Uses hledger 1.51.1.
|
||||
|
||||
|
||||
# 1.51 2025-12-05
|
||||
|
||||
Improvements
|
||||
|
||||
@ -26,6 +26,34 @@ API
|
||||
User-visible changes in the hledger command line tool and library.
|
||||
|
||||
|
||||
# 1.51.1 2025-12-08
|
||||
|
||||
Fixes
|
||||
|
||||
- Relative includes from a symbolically-linked journal file now work again.
|
||||
This was fallout from 1.50.4's fixes.
|
||||
[#2503]
|
||||
|
||||
- When journal's include directive has an IO error, like trying to
|
||||
include an existing but unreadable file, or failing to find a home
|
||||
directory when expanding ~, it now shows the problematic include
|
||||
directive (previously the line number was off by one).
|
||||
|
||||
- `aregister`: respect the order of -f options when showing same-day transactions from multiple files.
|
||||
If transactions on the same date are coming from two files specified
|
||||
with -f options, we expect them to be displayed in parse order, ie
|
||||
respecting the order of the -f options. This wasn't always the case,
|
||||
now it is.
|
||||
|
||||
- `aregister`: show "ACCTPAT matches no account" error on just one line.
|
||||
|
||||
- Fix build failures with the scripts in bin/.
|
||||
(Dmitry Astapov, [#2497])
|
||||
|
||||
[#2503]: https://github.com/simonmichael/hledger/issues/2503
|
||||
[#2497]: https://github.com/simonmichael/hledger/issues/2497
|
||||
|
||||
|
||||
# 1.51 2025-12-05
|
||||
|
||||
Breaking changes
|
||||
|
||||
Loading…
Reference in New Issue
Block a user