source: public_html/release-notes-0.27.shtml

Last change on this file was 15275, checked in by Mark Evenson, 4 years ago

site: clean up HTML

Start moving all presentation logic into CSS.

Declare documents as polyglot HTML5/XHTML
<https://dev.w3.org/html5/html-polyglot/html-polyglot.htm>.

Strip use SVN $Id$ expansion as this doesn't convey any useful
information to the actual reader of the page.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
File size: 1.9 KB
Line 
1<!DOCTYPE html>
2<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
3<head>
4  <title>Release notes for ABCL 0.27</title>
5  <link rel="stylesheet" type="text/css" href="style.css"/>
6  <meta charset="utf-8"/>
7</head>
8
9<body>
10 <div id="title" class="header">
11   <h1>Release Notes for ABCL 0.27</h1>
12 </div>
13
14<!--#include virtual="left-menu" -->
15
16<div class="rn">
17
18
19<dl>
20  <dt>Specify JVM artifacts by the ABCL-ASDF contrib
21  </dt>
22  <dd>The ABCL-ASDF contrib extends the ASDF system definitions with
23  the ability to reference JVM specific artifacts.  The JAR-FILE and
24  JAR-DIRECTORY components that can be resolved via PATHNAME.  The MVN
25  component can be used to specify versioned artifacts that will be
26  resolved and downloaded by the Maven3 distributed infrastructure.
27  </dd>
28
29  <dt>Fixes to support CL-UNICODE, NAMED-READTABLES and PARENSCRIPT
30  </dt>
31  <dd>Wider compatibility with Quicklisp enacapsulated systems Based
32  on reports for problems using ABCL with CL-INTERPOL (CL-UNICODE
33  fix), NAMED-READTABLES and PARENSCRIPT.
34  </dd>
35  <dt>Further reduction of ANSI test suite failure count
36  </dt>
37  <dd>Coming from 20 failures out of 21702 at 0.26.2, there are now
38    16 failures out of 21702 at 0.27.0.
39  </dd>
40  <dt>Java method LispObject.writeToString() for printing Java-side ABCL
41    objects, renamed to printObject().
42  </dt>
43  <dd>LispObject.printObject() provides the implementation, but users will
44    want to call the new method LispObject.princToString() when human-readable
45    output is desired.
46  </dd>
47  <dt>Able to build SBCL
48  </dt>
49  <dd>
50    ABCL's compiler is once again able to serve as a cross compiler boot host for the SBCL Lisp core.
51  </dd>
52</dl>
53</div>
54
55
56<p><a href="release-notes.shtml">Release notes for older releases</a>.</p>
57
58<div class="footer">
59  <hr />
60  <p>Hosted as part of <a href="https://common-lisp.net/">common-lisp.net</a></p>
61</div>
62
63</body>
64</html>
Note: See TracBrowser for help on using the repository browser.