summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog21
-rwxr-xr-xconfigure2
-rw-r--r--txr.14
-rw-r--r--txr.c2
4 files changed, 25 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 691bbc77..408e463f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,26 @@
2011-09-26 Kaz Kylheku <kaz@kylheku.com>
+ Version 037
+
+ Short-circuiting behavior for @(all) and @(none).
+
+ Obsolete forms of @(next) and @(output) syntax are gone.
+
+ New filtering feature for substitutions in output.
+ Filtering to and from HTML built in, plus user-defined
+ filtering with deffilter.
+
+ Bugfixes: wrong error message in throw; lack of support for escaping
+ backslashes in literals and regexes.
+
+ * txr.c (version): Bumped to 037.
+
+ * txr.1: Set version to 037 and bumped date.
+
+ * configure: Bumped txr_ver to 037.
+
+2011-09-26 Kaz Kylheku <kaz@kylheku.com>
+
Bugfixes: Consistent escaping in various literals. Double
backslash codes for single backslash. Output clause can be empty.
diff --git a/configure b/configure
index 8c8a2c6e..375b1d9a 100755
--- a/configure
+++ b/configure
@@ -323,7 +323,7 @@ fi
#
-txr_ver=036
+txr_ver=037
#
# The all important banner.
diff --git a/txr.1 b/txr.1
index 9a654d57..917b0fff 100644
--- a/txr.1
+++ b/txr.1
@@ -21,9 +21,9 @@
.\"IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
.\"WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
-.TH "txr" 1 2010-10-05 "Utility Commands" "Txr Text Extractor" "Kaz Kylheku"
+.TH "txr" 1 2011-09-26 "Utility Commands" "Txr Text Extractor" "Kaz Kylheku"
.SH NAME
-txr \- text extractor (version 036)
+txr \- text extractor (version 037)
.SH SYNOPSIS
.B txr [ options ] query-file { data-file }*
.sp
diff --git a/txr.c b/txr.c
index 93958808..ac7db17c 100644
--- a/txr.c
+++ b/txr.c
@@ -43,7 +43,7 @@
#include "utf8.h"
#include "txr.h"
-const wchar_t *version = L"036";
+const wchar_t *version = L"037";
const wchar_t *progname = L"txr";
const wchar_t *spec_file = L"stdin";
val spec_file_str;