From 0b86366870e0a1e45955881a2d3206175061271e Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Wed, 8 Jan 2014 07:43:27 -0800 Subject: Version 73 --- ChangeLog | 12 ++++++++++++ RELNOTES | 17 +++++++++++++++++ configure | 2 +- txr.1 | 4 ++-- txr.c | 2 +- 5 files changed, 33 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index ecfc54cd..81684acb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +2013-01-08 Kaz Kylheku + + Version 73 + + * txr.c (version): Bumped. + + * txr.1: Bumped version and set date. + + * configure (txr_ver): Bumped. + + * RELNOTES: Updated. + 2014-01-07 Kaz Kylheku The lisp-parse function can now be called multiple times diff --git a/RELNOTES b/RELNOTES index 24c96412..421b9537 100644 --- a/RELNOTES +++ b/RELNOTES @@ -1,3 +1,20 @@ + TXR 73 + 2014-01-08 + + + Features + + - The new lisp-parse function scans TXR Lisp expressions at run-time + out of strings and streams, which means that TXR can now more easily keep + persistent, complex data in text files. + + Bugs + + - Fixed signal-handling-related performance issue caused by excessive + calls to the sigprocmask function. + + + TXR 72 2013-12-17 diff --git a/configure b/configure index 602d8a36..a08d9ab4 100755 --- a/configure +++ b/configure @@ -386,7 +386,7 @@ fi # -txr_ver=72 +txr_ver=73 # # The all important banner. diff --git a/txr.1 b/txr.1 index fa0ee664..b93da15e 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 2013-12-17 "Utility Commands" "Txr Text Processing Language" "Kaz Kylheku" +.TH "TXR" 1 2014-01-08 "Utility Commands" "Txr Text Processing Language" "Kaz Kylheku" .SH NAME -txr \- text processing language (version 72) +txr \- text processing language (version 73) .SH SYNOPSIS .B txr [ options ] query-file { data-file }* .sp diff --git a/txr.c b/txr.c index b8888c6a..15fc4ab1 100644 --- a/txr.c +++ b/txr.c @@ -46,7 +46,7 @@ #include "syslog.h" #include "txr.h" -const wchli_t *version = wli("72"); +const wchli_t *version = wli("73"); const wchar_t *progname = L"txr"; const wchar_t *spec_file = L"stdin"; val self_path; -- cgit v1.2.3