diff options
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | RELNOTES | 35 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | txr.1 | 4 | ||||
-rw-r--r-- | txr.c | 2 |
5 files changed, 51 insertions, 4 deletions
@@ -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 @@ -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 @@ -352,7 +352,7 @@ fi # -txr_ver=046 +txr_ver=047 # # The all important banner. @@ -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 @@ -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; |