summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog14
-rw-r--r--RELNOTES40
-rwxr-xr-xconfigure2
-rw-r--r--txr.14
-rw-r--r--txr.c2
5 files changed, 43 insertions, 19 deletions
diff --git a/ChangeLog b/ChangeLog
index 677ef32c..2f7a8378 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2013-10-23 Kaz Kylheku <kaz@kylheku.com>
+
+ Version 69
+
+ * txr.c (version): Bumped.
+
+ * txr.1: Bumped version and set date.
+
+ * configure (txr_ver): Bumped.
+
+ * RELNOTES: Updated.
+
2013-10-21 Kaz Kylheku <kaz@kylheku.com>
* txr.1: Fixed documentation bug. expt with three or more
@@ -31,7 +43,7 @@
* txr.c (version): Bumped.
- * txr.1: Bumped version, set date and documented string-cmp.
+ * txr.1: Bumped version and set date.
* configure (txr_ver): Bumped.
diff --git a/RELNOTES b/RELNOTES
index ac38a40e..d89cd7f3 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -1,28 +1,40 @@
+ TXR 69
+ 2013-10-23
+
+
+ Features
+
+ - Multiple @(output) blocks can now continue on the same output stream, which
+ is particularly useful if it is a pipe.
+
+ Bugs
+
+ - Fixed errors in documentation for the functions time-string-local,
+ time-string-utc and expt.
+
+
+
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.
+ - @(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.
+ - 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.
+ - 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).
+ - @rest or a numeric param like @1 can now be specified in the dot position
+ of the op form, as in (op foo . @rest).
diff --git a/configure b/configure
index 183e3ea6..58061e35 100755
--- a/configure
+++ b/configure
@@ -380,7 +380,7 @@ fi
#
-txr_ver=68
+txr_ver=69
#
# The all important banner.
diff --git a/txr.1 b/txr.1
index 2645dc16..735a1b2e 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-10-07 "Utility Commands" "Txr Text Processing Language" "Kaz Kylheku"
+.TH "TXR" 1 2013-10-23 "Utility Commands" "Txr Text Processing Language" "Kaz Kylheku"
.SH NAME
-txr \- text processing language (version 68)
+txr \- text processing language (version 69)
.SH SYNOPSIS
.B txr [ options ] query-file { data-file }*
.sp
diff --git a/txr.c b/txr.c
index 0d892e7c..76eea88b 100644
--- a/txr.c
+++ b/txr.c
@@ -43,7 +43,7 @@
#include "debug.h"
#include "txr.h"
-const wchli_t *version = wli("68");
+const wchli_t *version = wli("69");
const wchar_t *progname = L"txr";
const wchar_t *spec_file = L"stdin";
val self_path;