summaryrefslogtreecommitdiffstats
path: root/RELNOTES
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2017-02-28 06:28:00 -0800
committerKaz Kylheku <kaz@kylheku.com>2017-02-28 06:28:00 -0800
commiteea5eb4e29839b89b368b39165b8d2c87ebf406f (patch)
tree37a7f099b0dd147a51ef957b92249bee7c783ce4 /RELNOTES
parent44393aa4177a8412fdcb064d804fb0a8c6134c6d (diff)
downloadtxr-eea5eb4e29839b89b368b39165b8d2c87ebf406f.tar.gz
txr-eea5eb4e29839b89b368b39165b8d2c87ebf406f.tar.bz2
txr-eea5eb4e29839b89b368b39165b8d2c87ebf406f.zip
Version 170.txr-170
* RELNOTES: Updated. * configure, txr.1: Bumped version and date. * share/txr/stdlib/ver.tl: Likewise. * txr.vim, tl.vim: Regenerated.
Diffstat (limited to 'RELNOTES')
-rw-r--r--RELNOTES25
1 files changed, 25 insertions, 0 deletions
diff --git a/RELNOTES b/RELNOTES
index 380349de..9f3747a8 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -1,3 +1,28 @@
+ TXR 170
+ 2017-02-28
+
+
+ Features
+
+ - Horizontal-mode @(throw) directive.
+ - Horizontal @(block)...@(end) syntax.
+ - Second argument of trunc function is now optional:
+ (trunc -1.5) yields -1.0.
+ - floor and ceil functions take optional second argument,
+ which acts as a divisor: (floor 10 3) -> 3; (ceil 10 3) -> 4.
+ - New round function: (round 0.7) -> 1; (round 3 4) -> 1; (round 1 3) -> 0.
+ - New functions floor-rem, ceil-rem and round-rem.
+
+ Bugs
+
+ - Requirements for special interaction between @(accept)
+ and @(next), function calls, and @(finally) have been
+ identified and implemented.
+ - Fixed segfault (C null pointer dereference) when nil
+ symbol used to look up a struct slot.
+
+
+
TXR 169
2017-02-11