changelogs

This commit is contained in:
Simon Michael 2015-05-14 13:39:54 -07:00
parent 077e3c6a02
commit 934d217523
3 changed files with 29 additions and 0 deletions

View File

@ -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)

View File

@ -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 <c.lopez@kmels.net>)
0.25 (2015/4/7)
- GHC 7.10 compatibility (#239)

View File

@ -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)