From 8910536efaa12182a4ae0158783a1bb1426cdf04 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Tue, 11 Feb 2014 16:28:23 -0800 Subject: Version 79 --- ChangeLog | 12 ++++++++++++ RELNOTES | 20 ++++++++++++++++++++ configure | 2 +- txr.1 | 4 ++-- txr.c | 2 +- 5 files changed, 36 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4ae13197..a9495309 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +2014-02-11 Kaz Kylheku + + Version 79 + + * txr.c (version): Bumped. + + * txr.1: Bumped version and set date. + + * configure (txr_ver): Bumped. + + * RELNOTES: Updated. + 2014-02-11 Kaz Kylheku * eval.c (if_fun): Bugfix: forgotten handling of optional 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; -- cgit v1.2.3