summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog12
-rw-r--r--RELNOTES33
-rwxr-xr-xconfigure2
-rw-r--r--txr.14
-rw-r--r--txr.c2
5 files changed, 49 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index c0e9cd59..5b99044a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2012-02-29 Kaz Kylheku <kaz@kylheku.com>
+
+ Version 59
+
+ * txr.c (version): Bumped.
+
+ * txr.1: Bumped version and set date.
+
+ * configure (txr_ver): Bumped.
+
+ * RELNOTES: Updated.
+
2012-02-28 Kaz Kylheku <kaz@kylheku.com>
* lib.c (sub_list, replace_list, lazy_sub_str, sub_str, replace_str,
diff --git a/RELNOTES b/RELNOTES
index a4ff6507..8d1858ac 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -1,3 +1,36 @@
+ TXR 59
+ 2011-02-29
+
+
+ Features
+
+ - Implemented put-byte function on streams.
+
+ - Regex syntax in TXR Lisp changes from /re/ to #/re/, allowing
+ symbols containing slashes.
+
+ - New -B command line option forces TXR to dump the bindings even
+ if the program produced output.
+
+ - Revised and improved txr.vim syntax highlighting file for greater
+ lexical accuracy and superior flagging of errors.
+
+ Fixes
+
+ - Regression that broke [n..t] and [n..nil] sequence ranges.
+
+ - Broken hex-escaped character literals.
+
+ - Old bug from database: filter functions now see bindings in all
+ contexts in which they are invoked.
+
+ - Output clauses consisting of one empty line were being treated as empty.
+
+ - Implemented more sane rule for deciding when output has taken place
+ and suppress the printing fo bindings.
+
+
+
TXR 58
2011-02-25
diff --git a/configure b/configure
index e46f1518..6ed4b41b 100755
--- a/configure
+++ b/configure
@@ -357,7 +357,7 @@ fi
#
-txr_ver=58
+txr_ver=59
#
# The all important banner.
diff --git a/txr.1 b/txr.1
index 7ea141df..f60cd694 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-02-25 "Utility Commands" "Txr Text Processing Language" "Kaz Kylheku"
+.TH "TXR" 1 2012-02-29 "Utility Commands" "Txr Text Processing Language" "Kaz Kylheku"
.SH NAME
-txr \- text processing language (version 58)
+txr \- text processing language (version 59)
.SH SYNOPSIS
.B txr [ options ] query-file { data-file }*
.sp
diff --git a/txr.c b/txr.c
index 92893ebe..08e5acc8 100644
--- a/txr.c
+++ b/txr.c
@@ -43,7 +43,7 @@
#include "debug.h"
#include "txr.h"
-const wchli_t *version = wli("58");
+const wchli_t *version = wli("59");
const wchar_t *progname = L"txr";
const wchar_t *spec_file = L"stdin";