*** empty log message ***

This commit is contained in:
John Wiegley 2006-02-25 10:57:09 +00:00
parent f2a167e0ed
commit f4e4cd2db8
2 changed files with 10 additions and 10 deletions

12
NEWS
View file

@ -3,12 +3,6 @@
* 2.5
- A new configure option "--disable-emacs" will disable generation of
transaction and entry location info, which is used by ledger.el and
the "write" command. If you use neither of these, then disabling
them will cut textual parsing time in half, and binary loading time
by a third.
- Added a new "csv" command, for outputting results in CSV format.
- Added a new value expression regexp command:
@ -16,6 +10,12 @@
- Added new @min(x,y) and @max(x,y) value expression functions.
- A new configure option "--disable-emacs" will disable generation of
transaction and entry location info, which is used by ledger.el and
the "write" command. If you use neither of these, then disabling
them will cut textual parsing time in half, and binary loading time
(and cache file size) by a third.
- Effective dates may now be specified for entries:
2004/10/03=2004/09/30 Credit card company

View file

@ -13,15 +13,15 @@ namespace ledger {
static unsigned long binary_magic_number = 0xFFEED765;
#ifdef USE_EDITOR
#ifdef DEBUG_ENABLED
static unsigned long format_version = 0x00020583;
static unsigned long format_version = 0x00020585;
#else
static unsigned long format_version = 0x00020582;
static unsigned long format_version = 0x00020584;
#endif
#else
#ifdef DEBUG_ENABLED
static unsigned long format_version = 0x00020503;
static unsigned long format_version = 0x00020505;
#else
static unsigned long format_version = 0x00020502;
static unsigned long format_version = 0x00020504;
#endif
#endif