1 | <?xml version="1.0"?> |
---|
2 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" |
---|
3 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
---|
4 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
---|
5 | <head> |
---|
6 | <title><!--#include virtual="project-name" --></title> |
---|
7 | <link rel="stylesheet" type="text/css" href="style.css"/> |
---|
8 | <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/> |
---|
9 | <style> |
---|
10 | dt { font-size: 105%; font-family: sans-serif; font-weight: bold } |
---|
11 | dd { } |
---|
12 | </style> |
---|
13 | </head> |
---|
14 | |
---|
15 | <body> |
---|
16 | <div class="header"> |
---|
17 | <h1><!--#include virtual="project-name" --></h1> |
---|
18 | </div> |
---|
19 | |
---|
20 | <!--#include virtual="left-menu" --> |
---|
21 | |
---|
22 | <div style="float:left;width:80ex;margin-top:1cm"> |
---|
23 | |
---|
24 | <h2 style="text-align:center">Release notes for ABCL 0.15</h2> |
---|
25 | <p> |
---|
26 | <b style="font-family: sans-serif; font-size: 125%;">Major changes and new features</b> |
---|
27 | </p> |
---|
28 | <dl style="margin-left:3cm;width:20cm"> |
---|
29 | <dt>Fixed special bindings un-binding in compiled code for (local) |
---|
30 | transfer of control using GO/RETURN-FROM</dt> |
---|
31 | <dd>Special bindings now will get unbound in many more cases and much |
---|
32 | more efficiently upon local transfer of control. |
---|
33 | </dd> |
---|
34 | <dt>Reduced ANSI failures in both compiled and interpreted modes</dt> |
---|
35 | <dd>MULTIPLE-VALUE-SETQ wasn't working correctly on symbol macros. |
---|
36 | Multiple issues with DEFINE-SETF-EXPANDER, and others. See CHANGES. |
---|
37 | </dd> |
---|
38 | <dt>Multiple JSR-233 (Java scripting) support fixes</dt> |
---|
39 | <dd>See the logs for more: too much to summarize. |
---|
40 | </dd> |
---|
41 | <dt>Compiler new feature</dt> |
---|
42 | <dd>Support for COMPILE-ing functions with non-empty lexical environments - |
---|
43 | which themselves are not being compiled. |
---|
44 | </dd> |
---|
45 | <dt>Google App Engine</dt> |
---|
46 | <dd>Don't break when being run on Google App Engine because 'os.arch' |
---|
47 | isn't set. |
---|
48 | </dd> |
---|
49 | <dt>COMPILER-LET and MACROEXPAND-ALL</dt> |
---|
50 | <dd>CLtL2 primitive COMPILER-LET is now supported in the EXT package, |
---|
51 | so is MACROEXPAND-ALL. |
---|
52 | </dd> |
---|
53 | </dl> |
---|
54 | |
---|
55 | <h2 style="text-align:center">Release notes for ABCL 0.14</h2> |
---|
56 | <p> |
---|
57 | <b style="font-family: sans-serif; font-size: 125%;">Major changes and new features</b> |
---|
58 | </p> |
---|
59 | <dl style="margin-left:3cm;width:20cm"> |
---|
60 | <dt>Fixed special bindings un-binding in compiled code for |
---|
61 | MULTIPLE-VALUE-BIND, LET, LET*, PROGV and function bodies</dt> |
---|
62 | </dt> |
---|
63 | <dd>Special bindings now will get unbound even in case of (non-Lisp) |
---|
64 | exceptions. |
---|
65 | </dd> |
---|
66 | <dt>Reduced ANSI failures in interpreted mode</dt> |
---|
67 | <dd>RESTART-CASE wrongly didn't use the macro expansion environment |
---|
68 | to expand subforms. |
---|
69 | </dd> |
---|
70 | <dt>Lisp build system changed for parity with the Ant based build</dt> |
---|
71 | <dd>The Lisp build was lagging behind on adjustments made to the Ant |
---|
72 | based build. abcl.jar generated from either should now be the same. |
---|
73 | </dd> |
---|
74 | <dt>Several fixes to numeric calculations</dt> |
---|
75 | <dd>EXPT fixed for (EXPT NUMBER BIGNUM) and (EXPT BIGNUM RATIO). |
---|
76 | Also, ACOS with a complex double-float argument. |
---|
77 | </dd> |
---|
78 | </dl> |
---|
79 | |
---|
80 | |
---|
81 | <h2 style="text-align:center">Release notes for ABCL 0.13</h2> |
---|
82 | |
---|
83 | <p> |
---|
84 | <b style="font-family: sans-serif; font-size: 125%;">Major changes and new features</b> |
---|
85 | |
---|
86 | </p> |
---|
87 | <dl style="margin-left:3cm;width:20cm"> |
---|
88 | <dt>JSR-223: Java Scripting Plugin |
---|
89 | </dt> |
---|
90 | <dd>ABCL supports - when built with the <code>javax.script</code> package |
---|
91 | in the CLASSPATH - the interfaces defined in <a href="http://java.sun.com/developer/technicalArticles/J2SE/Desktop/scripting/">JSR-223</a>. |
---|
92 | </dd> |
---|
93 | <dt>Support for inlining FLOAT results</dt> |
---|
94 | <dd>When given the right DECLARE forms, ABCL is now able to inline |
---|
95 | calculations and intermediate values relating to FLOAT types. Before, |
---|
96 | it used to box all FLOAT values and results, without inlining.</dd> |
---|
97 | <dt>Compiler cleanups</dt> |
---|
98 | <dd>Lots of code cleanup in the compiler, such as elimination of |
---|
99 | nearly-equivalent code blocks.</dd> |
---|
100 | <dt>TRACE-ing fixes</dt> |
---|
101 | <dd>TRACE should no longer blow up when tracing FORMAT or inside |
---|
102 | the compiler.</dd> |
---|
103 | <dt>Support for "partial" wildcards in CL:DIRECTORY</dt> |
---|
104 | <dd>Patterns such as #p"cl-*.lisp" are now supported.</dd> |
---|
105 | </dl> |
---|
106 | |
---|
107 | <h2 style="text-align:center">Release notes for ABCL 0.12 and older</h2> |
---|
108 | |
---|
109 | <p>These release notes have not been created before. If someone takes |
---|
110 | the effort to create them, they will be added for 0.11 and 0.12.</p> |
---|
111 | |
---|
112 | </div> |
---|
113 | |
---|
114 | <div style="float:left;width:100%"> |
---|
115 | <hr /> |
---|
116 | <p>Back to <a href="http://common-lisp.net/">Common-lisp.net</a>.</p> |
---|
117 | |
---|
118 | <div class="check"> |
---|
119 | <a href="http://validator.w3.org/check/referer">Valid XHTML 1.0 Strict</a> |
---|
120 | </div> |
---|
121 | <div style="float:right;font-size:10px;font-family:monospace">$Id: release-notes-0.15.shtml 12008 2009-06-07 21:25:48Z ehuelsmann $</div> |
---|
122 | </div> |
---|
123 | </body> |
---|
124 | </html> |
---|