summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2012-04-06 07:44:08 -0700
committerKaz Kylheku <kaz@kylheku.com>2012-04-06 07:44:08 -0700
commit10d60eea8cf8c3b60d9df1d2fc7621833a2ee79c (patch)
tree80615f45fd863ebc8e91e84d5f2c8aad8c30dd10
parent19a11d78a13abc16728be3ae9c7eb9085e09da8c (diff)
downloadtxr-64.tar.gz
txr-64.tar.bz2
txr-64.zip
Version 64txr-64
* txr.c (version): Bumped. * txr.1: Bumped version and set date. * configure (txr_ver): Bumped. * RELNOTES: Updated.
-rw-r--r--ChangeLog12
-rw-r--r--RELNOTES27
-rwxr-xr-xconfigure2
-rw-r--r--txr.14
-rw-r--r--txr.c2
5 files changed, 43 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 5be82299..06302f34 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,17 @@
2012-04-05 Kaz Kylheku <kaz@kylheku.com>
+ Version 64
+
+ * txr.c (version): Bumped.
+
+ * txr.1: Bumped version and set date.
+
+ * configure (txr_ver): Bumped.
+
+ * RELNOTES: Updated.
+
+2012-04-05 Kaz Kylheku <kaz@kylheku.com>
+
* txr.vim: @[...] syntax not marked as "contained" because it
can freely occur, and is useful in @(output).
diff --git a/RELNOTES b/RELNOTES
index 85b7a1cc..b880dadd 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -1,3 +1,30 @@
+ TXR 64
+ 2011-04-06
+
+
+ Features
+
+ - In the pattern language, binding the symbol nil as a variable
+ is permitted now and has a special meaning of matching and
+ discarding input.
+
+ - Caching optimization in hash tables.
+
+ - Ephemeral GC implemented. This is experimental and currently
+ must be enabled at compile time with the --gen-gc configure
+ option.
+
+ Bugs
+
+ - Interaction between @(trailer) and @(accept) has been clarified.
+ An @(accept) return from the forms of a @(trailer) will still
+ roll back the input position to the starting point for the
+ @(trailer).
+
+
+
+
+
TXR 63
2011-03-30
diff --git a/configure b/configure
index a35a0bb1..6c6d7c2e 100755
--- a/configure
+++ b/configure
@@ -365,7 +365,7 @@ fi
#
-txr_ver=63
+txr_ver=64
#
# The all important banner.
diff --git a/txr.1 b/txr.1
index 89792af8..fcf30689 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 2012-03-30 "Utility Commands" "Txr Text Processing Language" "Kaz Kylheku"
+.TH "TXR" 1 2012-04-06 "Utility Commands" "Txr Text Processing Language" "Kaz Kylheku"
.SH NAME
-txr \- text processing language (version 63)
+txr \- text processing language (version 64)
.SH SYNOPSIS
.B txr [ options ] query-file { data-file }*
.sp
diff --git a/txr.c b/txr.c
index 519ca1fd..d07b98a6 100644
--- a/txr.c
+++ b/txr.c
@@ -43,7 +43,7 @@
#include "debug.h"
#include "txr.h"
-const wchli_t *version = wli("63");
+const wchli_t *version = wli("64");
const wchar_t *progname = L"txr";
const wchar_t *spec_file = L"stdin";