diff options
author | Andy Clement <aclement@pivotal.io> | 2018-02-21 12:10:36 -0800 |
---|---|---|
committer | Andy Clement <aclement@pivotal.io> | 2018-02-21 12:10:36 -0800 |
commit | 4d129674586cbf6cef232e5ba1a74e75708103b1 (patch) | |
tree | 05e80c5bf9ef2e7a826a683c0aaa7e26e3888d56 /docs | |
parent | 5c6d9b239f14d245c35eec6ea3650d290e9ccb9c (diff) | |
download | aspectj-4d129674586cbf6cef232e5ba1a74e75708103b1.tar.gz aspectj-4d129674586cbf6cef232e5ba1a74e75708103b1.zip |
Updates for 1.9.0.RC4 - latest JDTV1_9_0_RC4
Diffstat (limited to 'docs')
-rw-r--r-- | docs/dist/doc/README-190.html | 38 |
1 files changed, 29 insertions, 9 deletions
diff --git a/docs/dist/doc/README-190.html b/docs/dist/doc/README-190.html index e90042f6f..0033afded 100644 --- a/docs/dist/doc/README-190.html +++ b/docs/dist/doc/README-190.html @@ -1,6 +1,6 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> -<title>AspectJ 1.9.0.RC3 Readme</title> +<title>AspectJ 1.9.0.RC4 Readme</title> <style type="text/css"> <!-- P { margin-left: 20px; } @@ -17,33 +17,53 @@ © Copyright 2018 Contributors. All rights reserved. </small></div> -<h1>AspectJ 1.9.0.RC3 Readme</h1> +<p>The full list of resolved issues in 1.9.0 is available +<a href="https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&f0=OP&f1=OP&f3=CP&f4=CP&j1=OR&list_id=16866879&product=AspectJ&query_format=advanced&target_milestone=1.9.0">here</a></h2>.</p> + +<h1>AspectJ 1.9.0.RC4</h1> + +<p>Primary changes in RC4 are to add support for <compilerArg> in the Ant task. This enables users of the Ant task to +pass in options supported by the underlying AspectJ but not yet surfaced elsewhere. Particularly useful with Java9 which includes +a number of module related commands. For example, here is an iajc usage with compilerArg that is passing <tt>--add-modules java.xml.bind</tt>: + +<pre><code> + <iajc destdir="bin" failonerror="true" + showWeaveInfo="true" source="1.9" target="1.9" + debug="true" fork="true" maxmem="256m"> + <compilerArg value="--add-modules"/> + <compilerArg value="java.xml.bind"/> + <src path="src" /> + <classpath> + <pathelement location="${aspectj.home}/lib/aspectjrt.jar"/> + </classpath> + </iajc> +</code></pre> + +<li>1.9.0.RC4 available 21-Feb-2018</li> + +<h1>AspectJ 1.9.0.RC3</h1> <p>Primary changes in RC3 are to upgrade JDT and pickup all the fixes for Java9 that have gone into it over the last few months.</p> <li>1.9.0.RC3 available 5-Feb-2018</li> -<h1>AspectJ 1.9.0.RC2 Readme</h1> +<h1>AspectJ 1.9.0.RC2</h1> -<p>The full list of resolved issues in 1.9.0 is available -<a href="https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&f0=OP&f1=OP&f3=CP&f4=CP&j1=OR&list_id=16866879&product=AspectJ&query_format=advanced&target_milestone=1.9.0">here</a></h2>.</p> <ul> <li>1.9.0.RC2 available 9-Nov-2017 </ul> -<h3>1.9.0.RC2 changes</h3> - <p>Key change in 1.9.0.RC2 is actually to be more tolerant of JDK10. The version handling has been somewhat overhauled so AspectJ 9 will behave better on Java 10 and future JDKs. This should put AspectJ in a better place if new JDK versions are going to arrive thick and fast. +<h1>AspectJ 1.9.0.RC1</h1> <ul> + <li>1.9.0.RC1 available 20-Oct-2017 </ul> -<h3>1.9.0.RC1 changes</h3> - <p>This is the first release candidate of AspectJ 1.9.0 - the version of AspectJ to be based on Java9. It includes a recent version of the Eclipse Java9 compiler (from jdt core, commit #062ac5d7a6bf9).</p> |