From 10d60eea8cf8c3b60d9df1d2fc7621833a2ee79c Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Fri, 6 Apr 2012 07:44:08 -0700 Subject: Version 64 * txr.c (version): Bumped. * txr.1: Bumped version and set date. * configure (txr_ver): Bumped. * RELNOTES: Updated. --- ChangeLog | 12 ++++++++++++ RELNOTES | 27 +++++++++++++++++++++++++++ configure | 2 +- txr.1 | 4 ++-- txr.c | 2 +- 5 files changed, 43 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5be82299..06302f34 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +2012-04-05 Kaz Kylheku + + Version 64 + + * txr.c (version): Bumped. + + * txr.1: Bumped version and set date. + + * configure (txr_ver): Bumped. + + * RELNOTES: Updated. + 2012-04-05 Kaz Kylheku * txr.vim: @[...] syntax not marked as "contained" because it diff --git a/RELNOTES b/RELNOTES index 85b7a1cc..b880dadd 100644 --- a/RELNOTES +++ b/RELNOTES @@ -1,3 +1,30 @@ + TXR 64 + 2011-04-06 + + + Features + + - In the pattern language, binding the symbol nil as a variable + is permitted now and has a special meaning of matching and + discarding input. + + - Caching optimization in hash tables. + + - Ephemeral GC implemented. This is experimental and currently + must be enabled at compile time with the --gen-gc configure + option. + + Bugs + + - Interaction between @(trailer) and @(accept) has been clarified. + An @(accept) return from the forms of a @(trailer) will still + roll back the input position to the starting point for the + @(trailer). + + + + + TXR 63 2011-03-30 diff --git a/configure b/configure index a35a0bb1..6c6d7c2e 100755 --- a/configure +++ b/configure @@ -365,7 +365,7 @@ fi # -txr_ver=63 +txr_ver=64 # # The all important banner. diff --git a/txr.1 b/txr.1 index 89792af8..fcf30689 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 2012-03-30 "Utility Commands" "Txr Text Processing Language" "Kaz Kylheku" +.TH "TXR" 1 2012-04-06 "Utility Commands" "Txr Text Processing Language" "Kaz Kylheku" .SH NAME -txr \- text processing language (version 63) +txr \- text processing language (version 64) .SH SYNOPSIS .B txr [ options ] query-file { data-file }* .sp diff --git a/txr.c b/txr.c index 519ca1fd..d07b98a6 100644 --- a/txr.c +++ b/txr.c @@ -43,7 +43,7 @@ #include "debug.h" #include "txr.h" -const wchli_t *version = wli("63"); +const wchli_t *version = wli("64"); const wchar_t *progname = L"txr"; const wchar_t *spec_file = L"stdin"; -- cgit v1.2.3