source: branches/0.14.x/abcl/CHANGES

Last change on this file was 11737, checked in by ehuelsmann, 15 years ago

Update release date of 0.14.0.

  • Property svn:eol-style set to native
File size: 2.3 KB
Line 
1Version 0.14.0
2(5 Apr, 2009)
3svn://common-lisp.net/project/armedbear/svn/tags/0.14.0/abcl
4
5 Summary of changes:
6  * Increased clarity on licensing (Classpath exception
7     mentioned in COPYING, removed LICENSE)
8  * Resolved infinite recursion on TRACEing the compiler
9  * Changes on the lisp based build system for parity with Ant
10  * Fixed interpreter creation in Java Scripting
11  * libabcl.so no longer created; it was solely about installing
12     a SIGINT handler. Libraries should not do that.
13  * boxing of LispObject descendants in JCALL/JCALL-RAW fixed
14  * OpenBSD and NetBSD platform detection
15  * fixed special bindings restores in compiled code for
16     MULTIPLE-VALUE-BIND/LET/LET*/PROGV and function bodies
17  * introduced variadic list() function to replace list1() ... list9()
18  * fix return value type of ACOS with complex argument
19  * fixed precision of multiplication of complex values
20  * fixed use of COMPILE inside file compilation (i.e. COMPILE-FILE)
21  * fix expansion of macros inside RESTART-CASE
22     (fixes RESTART-CASE ANSI failures)
23  * fix macroexpansion in the precompiler
24  * Fixnum and Bignum now use a static factory method;
25      constructors are now private -> increases chances of numbers
26      being EQ
27  * Code cleanup in EXPT to fix (EXPT <any-number> <Bignum>)
28
29
30Version 0.13.0
31(28 Feb, 2009)
32svn://common-lisp.net/project/armedbear/svn/tags/0.13.0/abcl
33
34 Summary of changes:
35  * Separated J and ABCL into two trees
36  * Many many compiler code cleanups
37  * NetBeans project files
38  * Support for CDR6 (See http://cdr.eurolisp.org/document/6/)
39  * More efficient code emission in the compiler
40  * Ant build targets for testing (abcl.test)
41  * Use ConcurrentHashMap to store the lisp threads for increased performance
42  * Fix adjustability of expressly adjustable arrays (ticket #28)
43  * Fix calculation of upperbound on ASH in the compiler
44     (don't calculate numbers too big, instead, return '*')
45  * Introduce LispInteger as the super type of Bignum and Fixnum
46  * Boxing/unboxing for SingleFloat and DoubleFloat values,
47      inclusive of unboxed calculations
48  * Fixed URL decoding bug in loadCompiledFunction (use java.net.URLDecoder)
49  * Fixed line number counting
50  * Inlining of simple calculations (+/-/*)
51  * All static fields declared 'final'
52  * Add support for java.lang.Long based on Bignum to our FFI
53
Note: See TracBrowser for help on using the repository browser.