From a16a902df2469cbde86ffb6344ade1d987dd2f86 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Mon, 12 Dec 2011 09:06:26 -0800 Subject: Version 047 * txr.c (version): Bumped. * txr.1: Bumped version and set date. * configure (txr_ver): Bumped. * RELNOTES: Updated. --- ChangeLog | 12 ++++++++++++ RELNOTES | 35 +++++++++++++++++++++++++++++++++++ configure | 2 +- txr.1 | 4 ++-- txr.c | 2 +- 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 + + Version 047 + + * txr.c (version): Bumped. + + * txr.1: Bumped version and set date. + + * configure (txr_ver): Bumped. + + * RELNOTES: Updated. + 2011-12-11 Kaz Kylheku * 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; -- cgit v1.2.3