[armedbear-cvs] r12829 - public_html

Alessio Stalla astalla at common-lisp.net
Tue Jul 27 21:16:37 UTC 2010


Author: astalla
Date: Tue Jul 27 17:16:34 2010
New Revision: 12829

Log:
Release notes for version 0.21.


Added:
   public_html/release-notes-0.21.shtml
      - copied, changed from r12828, /public_html/release-notes-0.20.shtml

Copied: public_html/release-notes-0.21.shtml (from r12828, /public_html/release-notes-0.20.shtml)
==============================================================================
--- /public_html/release-notes-0.20.shtml	(original)
+++ public_html/release-notes-0.21.shtml	Tue Jul 27 17:16:34 2010
@@ -3,42 +3,41 @@
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 <head>
-  <title>ABCL - Release notes v0.20</title>
+  <title>ABCL - Release notes v0.21</title>
   <link rel="stylesheet" type="text/css" href="style.css"/>
   <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
 </head>
 
 <body>
  <div class="header">
-   <h1>ABCL - Release notes for version 0.20</h1>
+   <h1>ABCL - Release notes for version 0.21</h1>
  </div>
 
 <!--#include virtual="left-menu" -->
 
 <div class="rn">
 
-<h2>Most notable changes in ABCL 0.20</h2>
+<h2>Most notable changes in ABCL 0.21</h2>
 
 
-<p><a href="release-notes-0.19.shtml">Release notes for older releases</a>.</p>
+<p><a href="release-notes-0.20.shtml">Release notes for older releases</a>.</p>
 
 <dl>
-  <dt>Support for metaclasses</dt>
-  <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>
-  <dt>Support for URLs as pathnames</dt>
-  <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://trac.common-lisp.net/armedbear/ticket/95">Ticket #95</a> for more details.</dd>
-  <dt>ASDF2</dt>
-  <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>
-  <dt>Multithreading enhancements</dt>
-  <dd>Threads started through MAKE-THREAD now have a thread-termination restart available, and the THREADS:THREAD-JOIN primitive has been implemented.</dd>
-  <dt>Bug fixes and speed improvements</dt>
-  <dd>Several bugs have been fixed and many small speed improvements have been introduced.</dd>
+  <dt>OS-independent pathname representation in FASLs</dt>
+  <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>
+  <dt>ASDF2 updated</dt>
+  <dd>ASDF has been updated to version 2.004.</dd>
+  <dt>CLOS/MOP enhancements</dt>
+  <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>
+  <dt>Java interop enhancements</dt>
+  <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>
+  <dt>Other minor bug fixes</dt>
+  <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>
 </dl>
 
 
 
 
-
 <div style="float:left;width:100%">
  <hr />
  <p>Back to <a href="http://common-lisp.net/">Common-lisp.net</a>.</p>




More information about the armedbear-cvs mailing list