From f4e4cd2db8c354466f214de364d465d2ac0a891c Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sat, 25 Feb 2006 10:57:09 +0000 Subject: *** empty log message *** --- NEWS | 12 ++++++------ binary.cc | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/NEWS b/NEWS index bb883976..2c247f70 100644 --- a/NEWS +++ b/NEWS @@ -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 diff --git a/binary.cc b/binary.cc index cd96512a..ba6f497e 100644 --- a/binary.cc +++ b/binary.cc @@ -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 -- cgit v1.2.3