summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog12
-rw-r--r--RELNOTES27
-rwxr-xr-xconfigure2
-rw-r--r--txr.12
-rw-r--r--txr.c2
5 files changed, 42 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 9b66de82..309fb4a7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,17 @@
2011-12-28 Kaz Kylheku <kaz@kylheku.com>
+ Version 51
+
+ * txr.c (version): Bumped.
+
+ * txr.1: Bumped version and set date.
+
+ * configure (txr_ver): Bumped.
+
+ * RELNOTES: Updated.
+
+2011-12-28 Kaz Kylheku <kaz@kylheku.com>
+
* txr.1: Capitalize TXR where it makes sense.
Introductory text rewritten.
diff --git a/RELNOTES b/RELNOTES
index 1d56ad45..cc86928e 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -1,3 +1,30 @@
+ TXR 51
+ 2012-12-28
+
+
+ Features
+
+ - Better algorithm in the random function for generating evenly-distributed
+ pseudo-random numbers of arbitrary precision.
+
+ - PRNG startup behavior improved.
+
+ - New lazy-flatten function for flattening lists lazily. Used within
+ @(next :list ...) implementation, making it possible to scan through
+ Lisp-generated lazy lists.
+
+ Bugs
+
+ - Fixed showstopper bug introduced in a patch for the MPI library,
+ affecting 32 bit platforms.
+
+ - Fixed bug in Lisp expression interpolation in quasiliterals.
+
+ - Fixed fatal exception being thrown in verbose mode, by one of
+ the formatted print statements.
+
+
+
TXR 50
2012-12-23
diff --git a/configure b/configure
index 34a75236..a55f3c83 100755
--- a/configure
+++ b/configure
@@ -352,7 +352,7 @@ fi
#
-txr_ver=50
+txr_ver=51
#
# The all important banner.
diff --git a/txr.1 b/txr.1
index 621327e7..60226081 100644
--- a/txr.1
+++ b/txr.1
@@ -23,7 +23,7 @@
.TH "TXR" 1 2011-12-23 "Utility Commands" "Txr Text Extractor" "Kaz Kylheku"
.SH NAME
-txr \- text extractor (version 50)
+txr \- text extractor (version 51)
.SH SYNOPSIS
.B txr [ options ] query-file { data-file }*
.sp
diff --git a/txr.c b/txr.c
index 97d8c194..b3f0f55e 100644
--- a/txr.c
+++ b/txr.c
@@ -43,7 +43,7 @@
#include "debug.h"
#include "txr.h"
-const wchli_t *version = wli("50");
+const wchli_t *version = wli("51");
const wchar_t *progname = L"txr";
const wchar_t *spec_file = L"stdin";
val spec_file_str;