diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2012-03-23 11:30:35 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2012-03-23 11:30:35 -0700 |
commit | cf4a3935e1614a0428851ad4392340b738e16e2b (patch) | |
tree | 4c6db7ed56587324f048d8f03be459ab019ecfd8 /RELNOTES | |
parent | be6d19b9cdde9184d60bce828d002458d00c54ab (diff) | |
download | txr-cf4a3935e1614a0428851ad4392340b738e16e2b.tar.gz txr-cf4a3935e1614a0428851ad4392340b738e16e2b.tar.bz2 txr-cf4a3935e1614a0428851ad4392340b738e16e2b.zip |
* RELNOTES: Updated.
* txr.1: Describe floating-point constants.
Diffstat (limited to 'RELNOTES')
-rw-r--r-- | RELNOTES | 36 |
1 files changed, 36 insertions, 0 deletions
@@ -1,3 +1,39 @@ + TXR 62 + 2011-03-23 + + + Features + + - Floating-point support has been added. + - TXR programs can specify floating-point constants. + - Printing floting points is supported in the format function. + - New specifiers: ~f and ~e. + - Arithmetic on floating points, with implicit + conversion. + - New / function which produces a floating-point result. + - New functions like sin, cos, exp, and log. + - Functions for converting between floating and integer, + and parsing a float from a string. + + - New combinators for easier programming with higher order functions: chain, + andf, orf, iff. + + - url_decode and url_encode functions take an optional parameter which + determines whether + is used as the code for space, distinguishing + URL encoding from percent encoding. Separate named filters are + introduced: :frompercent, :topercent distinct from :fromurl and :tourl. + + Bugs + + - Buggy quicksort routine repaired. This is a recently + added feature which allows vectors and strings to be sorted. + List sorting, done by merge sort, is unaffected. + + - Breakpoints can now be set by line number and file name, allowing + breakpoints in loaded modules, not just the main module. + + + TXR 61 2011-03-15 |