source: public_html/release-notes-0.20.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.20</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.20</h1>
12 </div>
13
14<!--#include virtual="left-menu" -->
15
16<div class="rn">
17
18
19
20<dl>
21  <dt>Support for metaclasses</dt>
22  <dd>ABCL now supports user-defined CLOS metaclasses. The MOP has been improved and extended to accomodate for this new feature. This is the first funded feature added to ABCL: funds were provided to implement it and the relevant tests. As a consequence of the addition of this important feature, the JAVA-CLASS built-in metaclass has been reimplemented in Lisp and has been improved in the process.</dd>
23  <dt>Support for URLs as pathnames</dt>
24  <dd>Pathnames can now be used to represent URLs: PATHNAME-JAR and PATHNAME-URL subtypes now handle Jar and URL references working for OPEN, LOAD, PROBE-FILE, FILE-WRITE-DATE, DIRECTORY, et. al. See <a href="http://abcl.org/trac/ticket/95">Ticket #95</a> for more details.</dd>
25  <dt>ASDF2</dt>
26  <dd>The version of ASDF included in ABCL has been updated to ASDF2 (specifically to ASDF 1.719). This version of ASDF is integrated with URL support in pathnames (see the previous point) and is thus capable of loading Lisp systems directly from Jar archives.</dd>
27  <dt>Multithreading enhancements</dt>
28  <dd>Threads started through MAKE-THREAD now have a thread-termination restart available, and the THREADS:THREAD-JOIN primitive has been implemented.</dd>
29  <dt>Bug fixes and speed improvements</dt>
30  <dd>Several bugs have been fixed and many small speed improvements have been introduced.</dd>
31</dl>
32
33</div>
34
35<p><a href="release-notes.shtml">Release notes for older releases</a>.</p>
36
37<div class="footer">
38  <hr />
39  <p>Hosted as part of <a href="https://common-lisp.net/">common-lisp.net</a></p>
40</div>
41
42</body>
43</html>
Note: See TracBrowser for help on using the repository browser.