forked from StanzaOrg/lbstanza-old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog.txt
63 lines (55 loc) · 2.17 KB
/
ChangeLog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
Version 0.10.7
==============
- Changed floating point printing to print in scientific notation if
necessary.
- Changed quick sort algorithm to use 3 way partitioning.
- Fixed bug with calling convention for extern defn declarations.
Version 0.10.6
==============
- Fixed bug in void check pass. Variables without initializing values
now properly fail if referenced before being initialized.
- Added named let syntax.
- Added syntax for adding type declarations to for bindings.
Version 0.10.4
==============
- Fixed bug in .pkg file creation for big tuples.
Version 0.10.3
==============
- Added automatic error recovery and multiple error detection to parser.
- Added read-line function for reader to assist in writing REPLs.
Version 0.10.2
==============
- Changed precedence of bit-wise operators. | has same precedence as
+. & and ^ has same precedence as *. <<, >>, and >>> has tightest precedence now.
- Changed label construct to return false if no type is explicitly
given.
- Added support for tagged multiline comments.
;<TAG> This is a multline comment! <TAG>
Version 0.10.0
===============
- Completely changed syntax for macro system. See documentation on
using defsyntax for details.
- Fixed bug in precedence of "not" operator. Note that version 0.9
erroneously parsed "not a or b" as "not (a or b)". The corrected
behaviour now parses it as "(not a) or b".
- Added filter-by<T>(x) syntax.
- Added match(e : t) syntax.
- Added switch(e) syntax for special case of using equality predicate.
- Added "stanza check" functionality to main executable.
- Added BufferedInputStream.
Version 0.9.5
=============
- Added support for RandomAccessFiles.
- Added efficient ByteArray representation.
Version 0.9.4
=============
- Added resource keyword for declaring values that are automatically
freed at the end of their scope.
- Added autofree-marker and c-autofree-marker convenience functions
for automatically deleting a pointer.
- Added box-object, free-box, boxed-object for assigning stable ids to
Stanza values in order for them to be passed out to external
environments.
Version 0.9.0
=============
- core/macro-utils/collect has been renamed to core/macro-utils/repeated