source: public_html/release-notes-0.21.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.21</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.21</h1>
12 </div>
13
14<!--#include virtual="left-menu" -->
15
16<div class="rn">
17
18
19<dl>
20  <dt>OS-independent pathname representation in FASLs</dt>
21  <dd>A long-withstanding bug which clearly manifested in release 0.20 with the integration of ASDF 2: pathnames were externalized in FASLs using their OS-dependent printed representation. Thus FASLs containing literal pathnames compiled on Windows didn't work correctly on Linux. This bug has been fixed in this release by always externalizing pathnames using '/' as a separator, so they can be correctly read back on all major OSes.</dd>
22  <dt>ASDF2 updated</dt>
23  <dd>ASDF has been updated to version 2.004.</dd>
24  <dt>CLOS/MOP enhancements</dt>
25  <dd>It is now possible to define custom slot definition metaobjects and to add custom defclass options to user-defined metaclasses. It is also now possible to use slot-value, (setf slot-value), and slot-boundp on structure objects.</dd>
26  <dt>Java interop enhancements</dt>
27  <dd>Java integration has been enhanced: the classpath can now be manipulated and inspected at runtime; a proxy implementing multiple interfaces in Lisp can be produced; and CL:STRING has been extended to call toString() on Java objects.</dd>
28  <dt>Other minor bug fixes</dt>
29  <dd>Including a few fixes on how certain objects are printed, a MACROLET bug, and support for JSR-223 with Java 1.5. Consult the CHANGES file distributed with ABCL for more details.</dd>
30</dl>
31
32</div>
33
34<p><a href="release-notes.shtml">Release notes for older releases</a>.</p>
35
36<div class="footer">
37  <hr />
38  <p>Hosted as part of <a href="https://common-lisp.net/">common-lisp.net</a></p>
39</div>
40
41</body>
42</html>
Note: See TracBrowser for help on using the repository browser.