summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog14
-rw-r--r--RELNOTES4
-rwxr-xr-xconfigure2
-rw-r--r--txr.14
-rw-r--r--txr.c2
5 files changed, 19 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 028cb0c1..072ff6fe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,17 @@
2011-12-05 Kaz Kylheku <kaz@kylheku.com>
+ Version 045
+
+ * txr.c (version): Bumped.
+
+ * txr.1: Bumped version and set date.
+
+ * configure (txr_ver): Bumped.
+
+ * RELNOTES: Updated.
+
+2011-12-05 Kaz Kylheku <kaz@kylheku.com>
+
* eval.c (op_cond): Fixed behavior for singleton clauses.
(eval_init): Use existing function objects car_f, cdr_f,
eq_f, eql_f and equal_f. Added identity to function table.
@@ -105,7 +117,7 @@
backquote processing, and quasiquote forms containing
non-quasi-quotes like like '(a 'b ,c).
-2011-11-20 Kaz Kylheku <kaz@kylheku.com>
+2011-12-02 Kaz Kylheku <kaz@kylheku.com>
Version 044
diff --git a/RELNOTES b/RELNOTES
index 89fde259..7afa1dc8 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -1,5 +1,6 @@
TXR 045
- 2012-12-0?
+ 2012-12-05
+
Features
@@ -16,7 +17,6 @@
-
TXR 044
2012-12-01
diff --git a/configure b/configure
index 027c15f7..4386ddc4 100755
--- a/configure
+++ b/configure
@@ -349,7 +349,7 @@ fi
#
-txr_ver=044
+txr_ver=045
#
# The all important banner.
diff --git a/txr.1 b/txr.1
index 67f660d2..0e42967d 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-01 "Utility Commands" "Txr Text Extractor" "Kaz Kylheku"
+.TH "txr" 1 2011-12-05 "Utility Commands" "Txr Text Extractor" "Kaz Kylheku"
.SH NAME
-txr \- text extractor (version 044)
+txr \- text extractor (version 045)
.SH SYNOPSIS
.B txr [ options ] query-file { data-file }*
.sp
diff --git a/txr.c b/txr.c
index 736e5dfc..4bf89979 100644
--- a/txr.c
+++ b/txr.c
@@ -43,7 +43,7 @@
#include "debug.h"
#include "txr.h"
-const wchli_t *version = wli("044");
+const wchli_t *version = wli("045");
const wchar_t *progname = L"txr";
const wchar_t *spec_file = L"stdin";
val spec_file_str;