source: public_html/release-notes-0.14.shtml @ 13741

Last change on this file since 13741 was 13741, checked in by Mark Evenson, 11 years ago

Correct to valid XHTML.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
File size: 3.3 KB
Line 
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 type="text/css">
10dt { font-size: 105%; font-family: sans-serif; font-weight: bold }
11dd { }
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.14</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
30   MULTIPLE-VALUE-BIND, LET, LET*, PROGV and function bodies</dt>
31  </dt>
32  <dd>Special bindings now will get unbound even in case of (non-Lisp)
33      exceptions.
34  </dd>
35  <dt>Reduced ANSI failures in interpreted mode</dt>
36  <dd>RESTART-CASE wrongly didn't use the macro expansion environment
37    to expand subforms.
38  </dd>
39  <dt>Lisp build system changed for parity with the Ant based build</dt>
40  <dd>The Lisp build was lagging behind on adjustments made to the Ant
41    based build.  abcl.jar generated from either should now be the same.
42  </dd>
43  <dt>Several fixes to numeric calculations</dt>
44  <dd>EXPT fixed for (EXPT NUMBER BIGNUM) and (EXPT BIGNUM RATIO).
45    Also, ACOS with a complex double-float argument.
46  </dd>
47</dl>
48
49
50<h2 style="text-align:center">Release notes for ABCL 0.13</h2>
51
52<p>
53  <b style="font-family: sans-serif; font-size: 125%;">Major changes and new features</b>
54
55</p>
56<dl style="margin-left:3cm;width:20cm">
57  <dt>JSR-223: Java Scripting Plugin
58  </dt>
59  <dd>ABCL supports - when built with the <code>javax.script</code> package
60    in the CLASSPATH - the interfaces defined in <a href="http://java.sun.com/developer/technicalArticles/J2SE/Desktop/scripting/">JSR-223</a>.
61  </dd>
62  <dt>Support for inlining FLOAT results</dt>
63  <dd>When given the right DECLARE forms, ABCL is now able to inline
64    calculations and intermediate values relating to FLOAT types.  Before,
65    it used to box all FLOAT values and results, without inlining.</dd>
66  <dt>Compiler cleanups</dt>
67  <dd>Lots of code cleanup in the compiler, such as elimination of
68    nearly-equivalent code blocks.</dd>
69  <dt>TRACE-ing fixes</dt>
70  <dd>TRACE should no longer blow up when tracing FORMAT or inside
71    the compiler.</dd>
72  <dt>Support for "partial" wildcards in CL:DIRECTORY</dt>
73  <dd>Patterns such as #p"cl-*.lisp" are now supported.</dd>
74</dl>
75
76<h2 style="text-align:center">Release notes for ABCL 0.12 and older</h2>
77
78<p>These release notes have not been created before. If someone takes
79  the effort to create them, they will be added for 0.11 and 0.12.</p>
80
81</div>
82
83<div style="float:left;width:100%">
84 <hr />
85 <p>Back to <a href="http://common-lisp.net/">Common-lisp.net</a>.</p>
86
87 <div class="check">
88   <a href="http://validator.w3.org/check/referer">Valid XHTML 1.0 Strict</a>
89 </div>
90<div style="float:right;font-size:10px;font-family:monospace">$Id: release-notes-0.14.shtml 13741 2012-01-10 14:04:24Z mevenson $</div>
91</div>
92</body>
93</html>
Note: See TracBrowser for help on using the repository browser.