summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2011-12-13 20:17:50 -0800
committerKaz Kylheku <kaz@kylheku.com>2011-12-13 20:18:21 -0800
commita86f247ea2a92a2b67b58eb7b5b7bc7f592d1773 (patch)
treedc6fbedab90a6cba8c8b6312ad6d854fdf103c26
parent901f7e6c7588b86cbd63172a4871be22bb024b6d (diff)
downloadtxr-a86f247ea2a92a2b67b58eb7b5b7bc7f592d1773.tar.gz
txr-a86f247ea2a92a2b67b58eb7b5b7bc7f592d1773.tar.bz2
txr-a86f247ea2a92a2b67b58eb7b5b7bc7f592d1773.zip
Version 048txr-048
* txr.c (version): Bumped. * txr.1: Bumped version and set date. * configure (txr_ver): Bumped. * RELNOTES: Updated.
-rw-r--r--ChangeLog12
-rw-r--r--RELNOTES22
-rwxr-xr-xconfigure2
-rw-r--r--txr.14
-rw-r--r--txr.c2
5 files changed, 38 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 49e0a6c1..5241c4c1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,17 @@
2011-12-13 Kaz Kylheku <kaz@kylheku.com>
+ Version 048
+
+ * txr.c (version): Bumped.
+
+ * txr.1: Bumped version and set date.
+
+ * configure (txr_ver): Bumped.
+
+ * RELNOTES: Updated.
+
+2011-12-13 Kaz Kylheku <kaz@kylheku.com>
+
* arith.c (exptmod, gcd): New functions.
* eval.c (eval_init): New functions registered as intrisics.
diff --git a/RELNOTES b/RELNOTES
index 087edac0..1b266b33 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -1,3 +1,25 @@
+ TXR 048
+ 2012-12-13
+
+
+ Features
+
+ - New functions: expt, exptmod, sqrt, numberp, evenp, oddp, abs, gcd
+ reduce-left, reduce-right.
+
+ - Replaced horribly slow square root in MPI with a less horribly slow one.
+
+ Bugs
+
+ - Fixed numerous instances, in the MPI library, of coding broken
+ for mpi_digit wider than 16 bits, leading to incorrect results and
+ crashes.
+
+ - Fixed mpi_int for 32 bit platforms so that obj_t stays 4 pointers wide.
+ (The sign becomes a 1 bit wide bitfield).
+
+
+
TXR 047
2012-12-12
diff --git a/configure b/configure
index 73a002ab..76baffdc 100755
--- a/configure
+++ b/configure
@@ -352,7 +352,7 @@ fi
#
-txr_ver=047
+txr_ver=048
#
# The all important banner.
diff --git a/txr.1 b/txr.1
index 4cebd27b..3eca72ad 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 2011-12-12 "Utility Commands" "Txr Text Extractor" "Kaz Kylheku"
+.TH "txr" 1 2011-12-13 "Utility Commands" "Txr Text Extractor" "Kaz Kylheku"
.SH NAME
-txr \- text extractor (version 047)
+txr \- text extractor (version 048)
.SH SYNOPSIS
.B txr [ options ] query-file { data-file }*
.sp
diff --git a/txr.c b/txr.c
index f5ceb602..ef2121d3 100644
--- a/txr.c
+++ b/txr.c
@@ -43,7 +43,7 @@
#include "debug.h"
#include "txr.h"
-const wchli_t *version = wli("047");
+const wchli_t *version = wli("048");
const wchar_t *progname = L"txr";
const wchar_t *spec_file = L"stdin";
val spec_file_str;