source: public_html/release-notes-0.25.shtml @ 13236

Last change on this file since 13236 was 13236, checked in by ehuelsmann, 12 years ago

First draft for the 0.25 release notes page.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
File size: 2.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>ABCL - Release notes v0.25</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</head>
10
11<body>
12 <div class="header">
13   <h1>ABCL - Release notes for version 0.25</h1>
14 </div>
15
16<!--#include virtual="left-menu" -->
17
18<div class="rn">
19
20<h2>Most notable changes in ABCL 0.25</h2>
21
22
23<p><a href="release-notes-0.24.shtml">Release notes for older releases</a>.</p>
24
25<dl>
26  <dt>New :resolve-symlinks keyword argument for DIRECTORY
27  </dt>
28  <dd>Passing NIL as the value for :resolve-symlinks prevents DIRECTORY from
29    returning truenames.
30  </dd>
31  <dt>LISP-IMPLEMENTATION-VERSION now includes Subversion revision info
32  </dt>
33  <dd>`svnversion` is used to retrieve the state of the working copy
34    being compiled from; the information is included in the value returned
35    by lisp-implementation-version.
36  </dd>
37  <dt>Object instantiation speedups
38  </dt>
39  <dd>A cache has been implemented to reduce the number of calculatoins
40    required when determining whether the keyword arguments to
41    MAKE-INSTANCE and REINITIALIZE-INSTANCE are valid.
42  </dd>
43  <dt>Compiler refactoring to prevent further stack inconsistency errors
44  </dt>
45  <dd>Due to earlier changes to the compiler and the overall structure,
46    the Java class verifier would detect 'stack inconsistency' issues
47    in some specific cases. The refactoring should put an end to that.
48    In the short term, however, this change could have a slightly destabilizing
49    effect. Tests have been carried out, but no issues were found so far.
50  </dd>
51  <dd>Instantiation of forward referenced classes
52  </dd>
53  <dt>When trying to instantiate a forward referenced class, the user
54    will not get a vague error anymore, but a clear error about
55    the situation.
56  </dt>
57</dl>
58
59
60
61
62<div style="float:left;width:100%">
63 <hr />
64 <p>Back to <a href="http://common-lisp.net/">Common-lisp.net</a>.</p>
65
66 <div class="check">
67   <a href="http://validator.w3.org/check/referer">Valid XHTML 1.0 Strict</a>
68 </div>
69<div style="float:right;font-size:10px;font-family:monospace">$Id: release-notes-0.25.shtml 13236 2011-03-05 10:20:18Z ehuelsmann $</div>
70</div>
71</body>
72</html>
Note: See TracBrowser for help on using the repository browser.