summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2011-12-12 09:06:26 -0800
committerKaz Kylheku <kaz@kylheku.com>2011-12-12 09:06:26 -0800
commita16a902df2469cbde86ffb6344ade1d987dd2f86 (patch)
tree954abcb56779b824bcbba1ff9609ec2ac3c5e04b
parent770b69a7495f5e1f83eaf0c5de5782a3db90ad7b (diff)
downloadtxr-a16a902df2469cbde86ffb6344ade1d987dd2f86.tar.gz
txr-a16a902df2469cbde86ffb6344ade1d987dd2f86.tar.bz2
txr-a16a902df2469cbde86ffb6344ade1d987dd2f86.zip
Version 047txr-047
* txr.c (version): Bumped. * txr.1: Bumped version and set date. * configure (txr_ver): Bumped. * RELNOTES: Updated.
-rw-r--r--ChangeLog12
-rw-r--r--RELNOTES35
-rwxr-xr-xconfigure2
-rw-r--r--txr.14
-rw-r--r--txr.c2
5 files changed, 51 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index a18215d4..d3fb46a0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2011-12-06 Kaz Kylheku <kaz@kylheku.com>
+
+ Version 047
+
+ * txr.c (version): Bumped.
+
+ * txr.1: Bumped version and set date.
+
+ * configure (txr_ver): Bumped.
+
+ * RELNOTES: Updated.
+
2011-12-11 Kaz Kylheku <kaz@kylheku.com>
* arith.c (zerop, gt, lt, ge, le): Functions from lib.c reimplemented
diff --git a/RELNOTES b/RELNOTES
index c46c8325..087edac0 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -1,3 +1,38 @@
+ TXR 047
+ 2012-12-12
+
+
+ Features
+
+ - Transparent bignum arithmetic: when operations on machine word (fixnum)
+ integers overflow, multi-precision (bignum) integers are produced.
+
+ - TXR Lisp:
+
+ - New operators: progn, flip.
+ - Vector functions added, and vecref is an assignment place.
+ - Character manipulation functions.
+ - Association list functions.
+ - Implicit anonymous block around forms for loop.
+ - Implicit named block around forms for loop.
+ - Nump renamed to fixnump.
+ - Push arguments reversed: (push obj list).
+
+ - Syntax highlighting definition update for all new operators.
+
+ Bugs
+
+ - Another bugfix to character literals, allowing non-alphanumeric
+ constants like #\$.
+
+ - Fix in rplacd to make lazy list programming feasible.
+
+ - Reversed assoc and assq arguments throughout codebase.
+
+ - Debugger: repeating last command by pressing Enter works again.
+
+
+
TXR 046
2012-12-06
diff --git a/configure b/configure
index 3520af2b..73a002ab 100755
--- a/configure
+++ b/configure
@@ -352,7 +352,7 @@ fi
#
-txr_ver=046
+txr_ver=047
#
# The all important banner.
diff --git a/txr.1 b/txr.1
index c01819a6..7f791af3 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-06 "Utility Commands" "Txr Text Extractor" "Kaz Kylheku"
+.TH "txr" 1 2011-12-12 "Utility Commands" "Txr Text Extractor" "Kaz Kylheku"
.SH NAME
-txr \- text extractor (version 046)
+txr \- text extractor (version 047)
.SH SYNOPSIS
.B txr [ options ] query-file { data-file }*
.sp
diff --git a/txr.c b/txr.c
index b19ac125..f5ceb602 100644
--- a/txr.c
+++ b/txr.c
@@ -43,7 +43,7 @@
#include "debug.h"
#include "txr.h"
-const wchli_t *version = wli("046");
+const wchli_t *version = wli("047");
const wchar_t *progname = L"txr";
const wchar_t *spec_file = L"stdin";
val spec_file_str;