summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2011-12-06 19:17:37 -0800
committerKaz Kylheku <kaz@kylheku.com>2011-12-06 19:17:37 -0800
commit7bf14da873daab72ade5de8235ceee4cdedf5a16 (patch)
treef178346829fe6f604a16a142f18212976770f495
parentd12fd4bf61209806c780031d81e0b142e147e815 (diff)
downloadtxr-7bf14da873daab72ade5de8235ceee4cdedf5a16.tar.gz
txr-7bf14da873daab72ade5de8235ceee4cdedf5a16.tar.bz2
txr-7bf14da873daab72ade5de8235ceee4cdedf5a16.zip
Version 046txr-046
* txr.c (version): Bumped. * txr.1: Bumped version and set date. * configure (txr_ver): Bumped. * RELNOTES: Updated.
-rw-r--r--ChangeLog12
-rw-r--r--RELNOTES23
-rwxr-xr-xconfigure2
-rw-r--r--txr.14
-rw-r--r--txr.c2
5 files changed, 39 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 1fcfd10c..eef1fdd6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,17 @@
2011-12-06 Kaz Kylheku <kaz@kylheku.com>
+ Version 046
+
+ * txr.c (version): Bumped.
+
+ * txr.1: Bumped version and set date.
+
+ * configure (txr_ver): Bumped.
+
+ * RELNOTES: Updated.
+
+2011-12-06 Kaz Kylheku <kaz@kylheku.com>
+
* stream.c (find_char): New function.
(string_in_get_line): Following up TODO. Fixed broken
function. Now get_line on a string stream properly returns characters
diff --git a/RELNOTES b/RELNOTES
index 7afa1dc8..c46c8325 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -1,3 +1,26 @@
+ TXR 046
+ 2012-12-06
+
+
+ Features
+
+ - Vector-related functions exposed in Lisp interpreter.
+
+ - Syntax added for specifying vector literals in code.
+
+ - Length function made generic over strings, lists and vectors.
+
+ Bugs
+
+ - Broken get_line function over string input streams fixed.
+
+ - Some kinds of character literals were not being recognized properly.
+
+ - bugfixes in configure script, affecting 64 bit Mac OS X. Thanks
+ to Andy Wildenberg for reporting issue and confirming root cause.
+
+
+
TXR 045
2012-12-05
diff --git a/configure b/configure
index db30c8e8..0c8a0e7e 100755
--- a/configure
+++ b/configure
@@ -349,7 +349,7 @@ fi
#
-txr_ver=045
+txr_ver=046
#
# The all important banner.
diff --git a/txr.1 b/txr.1
index 43d49c42..bab0f4c5 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-05 "Utility Commands" "Txr Text Extractor" "Kaz Kylheku"
+.TH "txr" 1 2011-12-06 "Utility Commands" "Txr Text Extractor" "Kaz Kylheku"
.SH NAME
-txr \- text extractor (version 045)
+txr \- text extractor (version 046)
.SH SYNOPSIS
.B txr [ options ] query-file { data-file }*
.sp
diff --git a/txr.c b/txr.c
index 4bf89979..b19ac125 100644
--- a/txr.c
+++ b/txr.c
@@ -43,7 +43,7 @@
#include "debug.h"
#include "txr.h"
-const wchli_t *version = wli("045");
+const wchli_t *version = wli("046");
const wchar_t *progname = L"txr";
const wchar_t *spec_file = L"stdin";
val spec_file_str;