summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2012-01-11 19:36:27 -0800
committerKaz Kylheku <kaz@kylheku.com>2012-01-11 19:36:27 -0800
commit989f550a28fb8ac7164da38018ca43b542d1a086 (patch)
treebc70b7464dc2620b0be96266cbfc16564f7175e9
parentb765dfd93a0499de9781ff50efdc989cf06bba03 (diff)
downloadtxr-989f550a28fb8ac7164da38018ca43b542d1a086.tar.gz
txr-989f550a28fb8ac7164da38018ca43b542d1a086.tar.bz2
txr-989f550a28fb8ac7164da38018ca43b542d1a086.zip
Version 53
* txr.c (version): Bumped. * txr.1: Bumped version and set date. * configure (txr_ver): Bumped. * RELNOTES: Updated.
-rw-r--r--ChangeLog12
-rw-r--r--RELNOTES24
-rwxr-xr-xconfigure2
-rw-r--r--txr.12
-rw-r--r--txr.c2
5 files changed, 39 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 7eabd916..9a36dcec 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,17 @@
2012-01-11 Kaz Kylheku <kaz@kylheku.com>
+ Version 53
+
+ * txr.c (version): Bumped.
+
+ * txr.1: Bumped version and set date.
+
+ * configure (txr_ver): Bumped.
+
+ * RELNOTES: Updated.
+
+2012-01-11 Kaz Kylheku <kaz@kylheku.com>
+
TXR Lisp regression in C global variables.
* eval.c (struct c_var): New struct type.
diff --git a/RELNOTES b/RELNOTES
index 470935c9..eb620b2c 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -1,3 +1,27 @@
+ TXR 53
+ 2011-01-11
+
+
+ Features
+
+ - In variable substitutions in output and quasiliterals, the field
+ width expression is now evaluated.
+
+ - TXR Lisp:
+
+ - New operators and functions for generating lazy lists more conveniently.
+ - lazy mapcar and mappend: return lazy list.
+ - delay and force operators.
+ - parallel iteration/collection over lists.
+ - list-str function for splitting string into list of characters.
+
+ Bugs
+
+ - Fixed global buitin variables, broken in 52. Properly implemented
+ intended fix.
+
+
+
TXR 52
2011-01-07
diff --git a/configure b/configure
index a55f3c83..c7f66d73 100755
--- a/configure
+++ b/configure
@@ -352,7 +352,7 @@ fi
#
-txr_ver=51
+txr_ver=53
#
# The all important banner.
diff --git a/txr.1 b/txr.1
index eb816db8..0b4aa684 100644
--- a/txr.1
+++ b/txr.1
@@ -23,7 +23,7 @@
.TH "TXR" 1 2012-01-07 "Utility Commands" "Txr Text Extractor" "Kaz Kylheku"
.SH NAME
-txr \- text extractor (version 52)
+txr \- text extractor (version 53)
.SH SYNOPSIS
.B txr [ options ] query-file { data-file }*
.sp
diff --git a/txr.c b/txr.c
index b3f0f55e..55bf811f 100644
--- a/txr.c
+++ b/txr.c
@@ -43,7 +43,7 @@
#include "debug.h"
#include "txr.h"
-const wchli_t *version = wli("51");
+const wchli_t *version = wli("53");
const wchar_t *progname = L"txr";
const wchar_t *spec_file = L"stdin";
val spec_file_str;