summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2006-02-25 10:57:09 +0000
committerJohn Wiegley <johnw@newartisans.com>2008-04-13 02:41:26 -0400
commitf4e4cd2db8c354466f214de364d465d2ac0a891c (patch)
tree14af5a7dcde78ec2ac82388a878f38360f6ca727
parentf2a167e0ed4e0f23ddc0ffc68ec2a549b65670ac (diff)
downloadfork-ledger-f4e4cd2db8c354466f214de364d465d2ac0a891c.tar.gz
fork-ledger-f4e4cd2db8c354466f214de364d465d2ac0a891c.tar.bz2
fork-ledger-f4e4cd2db8c354466f214de364d465d2ac0a891c.zip
*** empty log message ***
-rw-r--r--NEWS12
-rw-r--r--binary.cc8
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