summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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