1 | Version 0.15.0 |
---|
2 | (?? Jun, 2009) - Anticipate a June date |
---|
3 | |
---|
4 | Summary of changes: |
---|
5 | * Updated FASL version |
---|
6 | * Support (pre)compilation of functions with a non-null lexical environment |
---|
7 | * Compiler and precompiler cleanups |
---|
8 | * 'rt.lisp' copy from ANSI test suite removed |
---|
9 | * Many documentation additions for the (pre)compiler |
---|
10 | * JSR-233 support improvements |
---|
11 | * Refactoring of classes: |
---|
12 | - deleted: CompiledFunction, ClosureTemplateFunction, CompiledClosure, |
---|
13 | Primitive0R, Primitive1R, Primitive2R |
---|
14 | - renamed: CompiledClosure [from ClosureTemplateFunction] |
---|
15 | * Compiler support for non-constant &key and &optional initforms |
---|
16 | * Fixed ticket #21: JVM stack inconsistency [due to use of RET/JSR] |
---|
17 | * Numerous special bindings handling fixes, especially with respect |
---|
18 | to (local) transfer of control with GO/RETURN-FROM |
---|
19 | * Paths retrieved using URL.getPath() require decoding (r11815) |
---|
20 | * Build doesn't work inside paths with spaces (r11813) |
---|
21 | * Compilation of export of a symbol not in *package* (r11808) |
---|
22 | * Moved compiler-related rewriting of forms from precompiler to compiler |
---|
23 | * Removed chained closures ('XEPs') in case of &optional arguments only |
---|
24 | * Loading of SLIME fails under specific conditions (r11791) |
---|
25 | * Binding of *FASL-ANONYMOUS-PACKAGE* breaks specials handling (r11783) |
---|
26 | * Fixed ANSI tests: DO-ALL-SYMBOLS.{6,9,12}, DEFINE-SETF-EXPANDER.{1,6,?}, |
---|
27 | MULTIPLE-VALUE-SETQ.{5,8}, SYMBOL-MACROLET.8, COMPILE-FILE.{17,18} |
---|
28 | * COMPILE and COMPILE-FILE second and third values after a failed |
---|
29 | invocation inside the same compilation-unit (r11769) |
---|
30 | * JCLASS on non-existing classes should signal an error (r11762) |
---|
31 | * Dotted lambda lists break interpretation (r11760) |
---|
32 | * Implementation of MACROEXPAND-ALL and COMPILER-LET (r11755) |
---|
33 | * Switch from casting to 'instanceof' for performance (r11754) |
---|
34 | * Google App Engine support: don't die if 'os.arch' isn't set (r11750) |
---|
35 | * Excessive stack use while resolving #n= and #n# (r11474) |
---|
36 | |
---|
37 | |
---|
38 | Version 0.14.1 |
---|
39 | (5 Apr, 2009) |
---|
40 | svn://common-lisp.net/project/armedbear/svn/tags/0.14.1/abcl |
---|
41 | |
---|
42 | Summary of changes: |
---|
43 | * Include this CHANGES file and scripting files in the tar and zip files |
---|
44 | |
---|
45 | |
---|
46 | Version 0.14.0 |
---|
47 | (5 Apr, 2009) |
---|
48 | svn://common-lisp.net/project/armedbear/svn/tags/0.14.0/abcl |
---|
49 | |
---|
50 | Summary of changes: |
---|
51 | * Increased clarity on licensing (Classpath exception |
---|
52 | mentioned in COPYING, removed LICENSE) |
---|
53 | * Resolved infinite recursion on TRACEing the compiler |
---|
54 | * Changes on the lisp based build system for parity with Ant |
---|
55 | * Fixed interpreter creation in Java Scripting |
---|
56 | * libabcl.so no longer created; it was solely about installing |
---|
57 | a SIGINT handler. Libraries should not do that. |
---|
58 | * boxing of LispObject descendants in JCALL/JCALL-RAW fixed |
---|
59 | * OpenBSD and NetBSD platform detection |
---|
60 | * fixed special bindings restores in compiled code for |
---|
61 | MULTIPLE-VALUE-BIND/LET/LET*/PROGV and function bodies |
---|
62 | * introduced variadic list() function to replace list1() ... list9() |
---|
63 | * fix return value type of ACOS with complex argument |
---|
64 | * fixed precision of multiplication of complex values |
---|
65 | * fixed use of COMPILE inside file compilation (i.e. COMPILE-FILE) |
---|
66 | * fix expansion of macros inside RESTART-CASE |
---|
67 | (fixes RESTART-CASE ANSI failures) |
---|
68 | * fix macroexpansion in the precompiler |
---|
69 | * Fixnum and Bignum now use a static factory method; |
---|
70 | constructors are now private -> increases chances of numbers |
---|
71 | being EQ |
---|
72 | * Code cleanup in EXPT to fix (EXPT <any-number> <Bignum>) |
---|
73 | |
---|
74 | |
---|
75 | Version 0.13.0 |
---|
76 | (28 Feb, 2009) |
---|
77 | svn://common-lisp.net/project/armedbear/svn/tags/0.13.0/abcl |
---|
78 | |
---|
79 | Summary of changes: |
---|
80 | * Separated J and ABCL into two trees |
---|
81 | * Many many compiler code cleanups |
---|
82 | * NetBeans project files |
---|
83 | * Support for CDR6 (See http://cdr.eurolisp.org/document/6/) |
---|
84 | * More efficient code emission in the compiler |
---|
85 | * Ant build targets for testing (abcl.test) |
---|
86 | * Use ConcurrentHashMap to store the lisp threads for increased performance |
---|
87 | * Fix adjustability of expressly adjustable arrays (ticket #28) |
---|
88 | * Fix calculation of upperbound on ASH in the compiler |
---|
89 | (don't calculate numbers too big, instead, return '*') |
---|
90 | * Introduce LispInteger as the super type of Bignum and Fixnum |
---|
91 | * Boxing/unboxing for SingleFloat and DoubleFloat values, |
---|
92 | inclusive of unboxed calculations |
---|
93 | * Fixed URL decoding bug in loadCompiledFunction (use java.net.URLDecoder) |
---|
94 | * Fixed line number counting |
---|
95 | * Inlining of simple calculations (+/-/*) |
---|
96 | * All static fields declared 'final' |
---|
97 | * Add support for java.lang.Long based on Bignum to our FFI |
---|
98 | |
---|