diff --git a/hledger-lib/CHANGES b/hledger-lib/CHANGES index dd90b5b8b..b3a19cc5c 100644 --- a/hledger-lib/CHANGES +++ b/hledger-lib/CHANGES @@ -2,8 +2,16 @@ API-ish changes in hledger-lib. User-visible changes appear in hledger's change log. +- some cleanup of debug trace helpers + +- tighten up some date and account name parsers (don't accept leading spaces; docs) + +- dependency compatibility updates + + 0.25 (2015/4/7) + - GHC 7.10 compatibility (#239) 0.24.1 (2015/3/15) diff --git a/hledger-web/CHANGES b/hledger-web/CHANGES index 9b649a508..ff11df7a9 100644 --- a/hledger-web/CHANGES +++ b/hledger-web/CHANGES @@ -2,6 +2,9 @@ User-visible changes in hledger-web. See also hledger's change log. +- fix a js error breaking add form in browsers other than firefox (#251, Carlos Lopez-Camey ) + + 0.25 (2015/4/7) - GHC 7.10 compatibility (#239) diff --git a/hledger/CHANGES b/hledger/CHANGES index e4f2f1af9..21feb2708 100644 --- a/hledger/CHANGES +++ b/hledger/CHANGES @@ -1,6 +1,24 @@ User-visible changes in hledger and hledger-lib. +- journal: bring back non-regular-expressing aliases, as the default (#252) + + The regex account aliases added in 0.24 trip up people switching between + hledger and Ledger. (Also they are currently slow). + + This change makes the old non-regex aliases the default; they are + unsurprising, useful, and pretty close in functionality to Ledger's. + + The new regex aliases are still available; they must be enclosed + in forward slashes. Ledger effectively ignores these, which is ok. + +- journal: allow whitespace following a comment directive + +- timelog: add support for the description field, like Ledger (#247) + +- dependency compatibility updates + + 0.25 (2015/4/7) - GHC 7.10 compatibility (#239)