summaryrefslogtreecommitdiffstats
path: root/RELNOTES
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2012-03-14 23:39:24 -0700
committerKaz Kylheku <kaz@kylheku.com>2012-03-14 23:39:24 -0700
commit685a76d56517070cdc9c34d24ec43e586946b4ca (patch)
tree229ceea1e4541e253705a530a04cbbe440ad0774 /RELNOTES
parenta93e773625448829315cf918a9ab9eeb764d3e18 (diff)
downloadtxr-685a76d56517070cdc9c34d24ec43e586946b4ca.tar.gz
txr-685a76d56517070cdc9c34d24ec43e586946b4ca.tar.bz2
txr-685a76d56517070cdc9c34d24ec43e586946b4ca.zip
* RELNOTES: Updated for upcoming 61.
Diffstat (limited to 'RELNOTES')
-rw-r--r--RELNOTES39
1 files changed, 39 insertions, 0 deletions
diff --git a/RELNOTES b/RELNOTES
index c5cd90cc..effe40d2 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -1,3 +1,42 @@
+ TXR 61
+ 2011-03-15
+
+
+ Features
+
+ - URL encoding and decoding functions added, and :tourl/:fromurl
+ filters implemented for output substitution.
+
+ - split-str function works with regex objects now.
+
+ - new regsub function for regex substitution in strings;
+ matched text can be filtered through a function.
+
+ - new *stddebug* stream used by debugger.
+
+ - put-byte works on string output streams, and does right
+ thing with mixtures of bytes (which are taken as UTF-8)
+ and characters written with put-char.
+
+ - Hash table literals implemented; hashes can now be notated
+ rather than constructed.
+
+ - Vectors can now be quasiquoted with unquote and splicing,
+ and so can the new hash table literals.
+
+ - @(block) syntax change: blocks do not extend to the end of
+ the surrounding scope but introduce their own, delimited
+ by @(end).
+
+ Fixes
+
+ - Fixed memory leak in string byte input stream.
+
+ - Fixed wrong parsing of tokens in cases like @(collect-foo)
+ where this was treated as @(collect -foo) rather than a single token.
+
+
+
TXR 60
2011-03-04