hledger/doc/ANNOUNCE

78 lines
3.2 KiB
Plaintext
Raw Normal View History

2013-12-14 07:49:04 +04:00
I have released hledger and hledger-web 0.22.
2012-05-29 22:34:33 +04:00
2012-10-22 02:19:34 +04:00
hledger is a command-line tool and haskell library for tracking
financial transactions, which are stored in a human-readable plain
text format. In addition to reporting, it can also help you record new
transactions, or convert CSV data from your bank. Add-on packages
2013-05-02 05:32:27 +04:00
include hledger-web (providing a web interface), hledger-irr and hledger-interest.
hledger is inspired by and compatible with John Wiegley's Ledger. For
more, see http://hledger.org .
2011-09-02 04:08:57 +04:00
2012-10-22 02:19:34 +04:00
Install it:
2011-09-02 04:08:57 +04:00
2013-06-02 03:05:36 +04:00
cabal update; cabal install hledger [hledger-web]
2013-05-02 05:32:27 +04:00
For more installation help, see http://hledger.org/MANUAL.html#installing .
2012-10-22 02:19:34 +04:00
Or, sponsor a ready-to-run binary for your platform: http://hledger.org/DOWNLOAD.html .
2013-05-02 05:32:27 +04:00
2013-12-14 07:49:04 +04:00
Release notes (http://hledger.org/NEWS.html#hledger-0.22):
**New:**
- balance: with a reporting interval (monthly, yearly etc.), the
[balance command](MANUAL.html#balance) will now show a multi-column report, showing either
the per-period changes in balance (by default),
the period ending balances starting from zero (`--cumulative`),
or the actual period ending balances (`--historical`).
A more detailed specification of the balance command's behaviour
has been added to [Hledger.Cli.Balance](http://hackage.haskell.org/package/hledger/docs/Hledger-Cli-Balance.html).
- csv: rules files can now include other rules files, useful for factoring out common rules
- queries: `sym:REGEXP` matches commodity symbols
- register: `--average/-A` shows a running average, like ledger
- in period expressions, `-` (hyphen) can be used as a more compact
synonym for `from` and `to`. Eg: `-p 2012/12/1-2013/2/1` or `date:aug-`.
- the add-on script examples in extra/ have been updated; get the
hledger source and add .../hledger/extra/ to your PATH to make them
available. They include:
hledger-accountnames.hs - print account names
hledger-balance-csv.hs - print a balance report as CSV
hledger-equity.hs - print an entry matching all account balances (like ledger)
hledger-print-unique.hs - print only journal entries unique descriptions
hledger-register-csv.hs - print a register report as CSV
**Improved:**
2013-05-02 05:32:27 +04:00
2013-12-14 07:49:04 +04:00
- balancesheet: now shows just assets and liabilities, not equity
2013-05-02 05:32:27 +04:00
2013-12-14 07:49:04 +04:00
- print: comment positions (same line or next line) are now preserved
2013-05-02 05:32:27 +04:00
2013-12-14 07:49:04 +04:00
- queries: `amt` now uses the = operator by default, eg `amt:50` is
equivalent to `amt:=50`
2013-05-02 05:32:27 +04:00
2013-12-14 07:49:04 +04:00
- command line processing has been overhauled and made more
consistent, and now has tests and debug output. More flags now work
both before and after COMMAND: `-f`, `--rule-file`, `--alias`,
`--help`, `--debug`, `--version`. Command line help, command
aliases, API docs and code have been improved.
2013-05-02 05:32:27 +04:00
2013-12-14 07:49:04 +04:00
- `--debug` now takes an optional numeric argument to set the debug level
higher than 1, for more verbose debug output in a few cases.
2013-05-02 05:32:27 +04:00
2013-12-14 07:49:04 +04:00
**Fixed:**
2013-05-02 05:32:27 +04:00
2013-12-14 07:49:04 +04:00
- csv: CSV data containing non-ascii characters is now supported
2013-05-02 05:32:27 +04:00
2013-12-14 07:49:04 +04:00
- build with latest versions of dependencies (text, warp, http-conduit etc.)
2013-05-02 05:32:27 +04:00
2013-12-14 07:49:04 +04:00
**Release contributors:**
2013-05-02 05:32:27 +04:00
2013-12-14 07:49:04 +04:00
Marko Kocić, Max Bolingbroke, and a big welcome to first-time committer John Wiegley! :)
2013-05-02 05:32:27 +04:00
2013-12-14 07:49:04 +04:00
There's a rumour that a 1.0 release could be next, depending on how this one fares. All feedback welcome.