summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2012-04-20 09:51:20 -0700
committerKaz Kylheku <kaz@kylheku.com>2012-04-20 09:51:20 -0700
commit6631b687b9761613aee2c07b4ce0c310ff718a70 (patch)
treedb5f835c33afb9f4b02297c3d72bf9ef3b09703d
parent0c52734b814927c3ec00ea6b9336dac0cdc9a8c0 (diff)
downloadtxr-6631b687b9761613aee2c07b4ce0c310ff718a70.tar.gz
txr-6631b687b9761613aee2c07b4ce0c310ff718a70.tar.bz2
txr-6631b687b9761613aee2c07b4ce0c310ff718a70.zip
Version 65txr-65
* txr.c (version): Bumped. * txr.1: Bumped version and set date. * configure (txr_ver): Bumped. * RELNOTES: Updated.
-rw-r--r--ChangeLog12
-rw-r--r--RELNOTES45
-rwxr-xr-xconfigure2
-rw-r--r--txr.14
-rw-r--r--txr.c2
5 files changed, 61 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 9af0e5b3..f4e5fee9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,17 @@
2012-04-20 Kaz Kylheku <kaz@kylheku.com>
+ Version 65
+
+ * txr.c (version): Bumped.
+
+ * txr.1: Bumped version and set date.
+
+ * configure (txr_ver): Bumped.
+
+ * RELNOTES: Updated.
+
+2012-04-20 Kaz Kylheku <kaz@kylheku.com>
+
* regex.c (regex_space_chars): Variable removed.
(char_set_addr_str): New function.
(char_set_compile): Use char_set_addr_str to
diff --git a/RELNOTES b/RELNOTES
index b880dadd..d8651887 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -1,3 +1,48 @@
+ TXR 65
+ 2011-04-20
+
+
+ Features
+
+ - New ways to iterate over hash tables using lazy lists.
+
+ - Regular expression compiler expressed to user code, allowing TXR
+ programs to build regex abstract syntax trees and turn them into
+ regular expression machines.
+
+ - The popular regular expression tokens \s, \d, \w and \S, \D, \W are now
+ supported (the first three of these in character classes also).
+
+ - Low level time-of-day functions added for retrieving epoch seconds,
+ and optionally microseconds.
+
+ - New remove-if and keep-if functions, plus lazy counterparts
+ remove-if* and keep-if*.
+
+ - Lazy variants remq*, remql* and remqual* added.
+
+ - New function find-if.
+
+ - Improved seeding of pseudo-random-number generator.
+
+ - Configure script now diagnoses specification of nonexistent config
+ variables.
+
+ - Documentation improvements.
+
+ - Portability to Mac OS/X 10.7 (Lion), NetBSD 5.1 and FreeBSD 9.0.
+
+ Bugs
+
+ - Bugfix in @(next) directive, which showed up when using @(next :args)
+ more than once to scan arguments more than once.
+
+ Quiet Changes
+
+ - First two arguments to the find function were reversed.
+
+
+
TXR 64
2011-04-06
diff --git a/configure b/configure
index cca35bda..6125fc28 100755
--- a/configure
+++ b/configure
@@ -380,7 +380,7 @@ fi
#
-txr_ver=64
+txr_ver=65
#
# The all important banner.
diff --git a/txr.1 b/txr.1
index 48358cc6..f2531d02 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-04-06 "Utility Commands" "Txr Text Processing Language" "Kaz Kylheku"
+.TH "TXR" 1 2012-04-20 "Utility Commands" "Txr Text Processing Language" "Kaz Kylheku"
.SH NAME
-txr \- text processing language (version 64)
+txr \- text processing language (version 65)
.SH SYNOPSIS
.B txr [ options ] query-file { data-file }*
.sp
diff --git a/txr.c b/txr.c
index 80b93836..4d7eee5e 100644
--- a/txr.c
+++ b/txr.c
@@ -43,7 +43,7 @@
#include "debug.h"
#include "txr.h"
-const wchli_t *version = wli("64");
+const wchli_t *version = wli("65");
const wchar_t *progname = L"txr";
const wchar_t *spec_file = L"stdin";
val self_path;