summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog12
-rw-r--r--RELNOTES28
-rwxr-xr-xconfigure2
-rw-r--r--txr.14
-rw-r--r--txr.c2
5 files changed, 44 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 2f038d88..7d0e16f9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2013-10-07 Kaz Kylheku <kaz@kylheku.com>
+
+ Version 68
+
+ * txr.c (version): Bumped.
+
+ * txr.1: Bumped version, set date and documented string-cmp.
+
+ * configure (txr_ver): Bumped.
+
+ * RELNOTES: Updated.
+
2013-10-06 Kaz Kylheku <kaz@kylheku.com>
Improving behavior of op and fixing a bug.
diff --git a/RELNOTES b/RELNOTES
index a70cb13f..ac38a40e 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -1,3 +1,31 @@
+ TXR 68
+ 2013-10-07
+
+
+ Features
+
+ - @(repeat) inside @(output) supports a :vars
+ parameter, making it possible to declare the
+ existence of iteration variables that are otherwise
+ hidden within Lisp code.
+
+ Bugs
+
+ - Out-of-sequence numeric parameters can be used
+ in the op operator now, like (op foo @2)
+ where @1 is absent.
+
+ - The implicit ". @rest" is now added to op forms
+ only if they do not mention @rest or any numeric
+ parameters, to prevent unintentional
+ passing of extra parameters.
+
+ - @rest or a numeric param like @1 can now be
+ specified in the dot position of the op form,
+ as in (op foo . @rest).
+
+
+
TXR 67
2013-07-13
diff --git a/configure b/configure
index 9df9e7a4..183e3ea6 100755
--- a/configure
+++ b/configure
@@ -380,7 +380,7 @@ fi
#
-txr_ver=67
+txr_ver=68
#
# The all important banner.
diff --git a/txr.1 b/txr.1
index 080759cb..046cde0b 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 2013-07-13 "Utility Commands" "Txr Text Processing Language" "Kaz Kylheku"
+.TH "TXR" 1 2013-10-07 "Utility Commands" "Txr Text Processing Language" "Kaz Kylheku"
.SH NAME
-txr \- text processing language (version 67)
+txr \- text processing language (version 68)
.SH SYNOPSIS
.B txr [ options ] query-file { data-file }*
.sp
diff --git a/txr.c b/txr.c
index f1d10464..0d892e7c 100644
--- a/txr.c
+++ b/txr.c
@@ -43,7 +43,7 @@
#include "debug.h"
#include "txr.h"
-const wchli_t *version = wli("67");
+const wchli_t *version = wli("68");
const wchar_t *progname = L"txr";
const wchar_t *spec_file = L"stdin";
val self_path;