summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-02-11 16:28:23 -0800
committerKaz Kylheku <kaz@kylheku.com>2014-02-11 16:28:23 -0800
commit8910536efaa12182a4ae0158783a1bb1426cdf04 (patch)
tree7c9d97c7efc3bd1f855f8a31ddee09d0970cecf4
parent28c0b2296f8e7e268400911d8fa6bb07a5bc76b3 (diff)
downloadtxr-8910536efaa12182a4ae0158783a1bb1426cdf04.tar.gz
txr-8910536efaa12182a4ae0158783a1bb1426cdf04.tar.bz2
txr-8910536efaa12182a4ae0158783a1bb1426cdf04.zip
Version 79txr-79
-rw-r--r--ChangeLog12
-rw-r--r--RELNOTES20
-rwxr-xr-xconfigure2
-rw-r--r--txr.14
-rw-r--r--txr.c2
5 files changed, 36 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 4ae13197..a9495309 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,17 @@
2014-02-11 Kaz Kylheku <kaz@kylheku.com>
+ Version 79
+
+ * txr.c (version): Bumped.
+
+ * txr.1: Bumped version and set date.
+
+ * configure (txr_ver): Bumped.
+
+ * RELNOTES: Updated.
+
+2014-02-11 Kaz Kylheku <kaz@kylheku.com>
+
* eval.c (if_fun): Bugfix: forgotten handling of optional
alternative argument.
diff --git a/RELNOTES b/RELNOTES
index dc9ca2ba..9d2f215d 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -1,3 +1,23 @@
+ TXR 79
+ 2014-02-11
+
+
+ Features
+
+ - New functions comb, perm, rcomp and rperm for calculating repeating and
+ non-repeating combinations and permuations of sequences (lists, vectors and
+ strings). Hashes are supported by comb function.
+
+ Bugs
+
+ - Hardening of code for handling excessively large vectors.
+
+ - Bugfix in quasistring handling in TXR Lisp.
+
+ - Bugfix in if function (not the if operator).
+
+
+
TXR 78
2014-02-06
diff --git a/configure b/configure
index eb6aac01..d2f27a57 100755
--- a/configure
+++ b/configure
@@ -387,7 +387,7 @@ fi
#
-txr_ver=78
+txr_ver=79
#
# The all important banner.
diff --git a/txr.1 b/txr.1
index 2d7f5274..827d9fd6 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 2014-02-06 "Utility Commands" "Txr Text Processing Language" "Kaz Kylheku"
+.TH "TXR" 1 2014-02-11 "Utility Commands" "Txr Text Processing Language" "Kaz Kylheku"
.SH NAME
-txr \- text processing language (version 78)
+txr \- text processing language (version 79)
.SH SYNOPSIS
.B txr [ options ] query-file { data-file }*
.sp
diff --git a/txr.c b/txr.c
index 8951d35d..79a39065 100644
--- a/txr.c
+++ b/txr.c
@@ -47,7 +47,7 @@
#include "eval.h"
#include "txr.h"
-const wchli_t *version = wli("78");
+const wchli_t *version = wli("79");
const wchar_t *progname = L"txr";
val self_path;