From 1c7ab763ac9c35f19c3af71c1c0fc3dd1932b8a2 Mon Sep 17 00:00:00 2001 From: Steve Loughran Date: Thu, 13 Jul 2006 11:19:40 +0000 Subject: [PATCH] update WHATSNEW with my recent set of changes git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@421591 13f79535-47bb-0310-9956-ffa450edef68 --- WHATSNEW | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/WHATSNEW b/WHATSNEW index 472c165b8..5941c1749 100644 --- a/WHATSNEW +++ b/WHATSNEW @@ -91,7 +91,13 @@ Changes that could break older environments: * used \r (Mac) line endings on OS X, whose proper line separator is \n (Unix). Bugzilla report 39585. -* now optionally supports the sftp protocol, you may need a newer jsch.jar. Bugzilla Report 39373. +* now optionally supports the sftp protocol, you may need a newer jsch.jar. + Bugzilla Report 39373. + +* Ant launcher program prints errors to stderr, and exits with a -1 exit code + value if, for any reason, it cannot actually start Ant proper. This will only + affect programs/scripts that called the launcher and which did not want to + receive an error if ant itself would not start Fixed bugs: ----------- @@ -242,6 +248,9 @@ Fixed bugs: * setPrefix javadoc claimed null or empty prefix would be ignored; instead an error was thrown. Bugzilla report 39954. +* would fetch files that were up to date, because it used > in a + remote/local timestamp comparison, not >=. Bugzilla 35607. + Other changes: -------------- * Took in bugzilla report 39320. @@ -460,6 +469,16 @@ Other changes: * has a jdkversion attribute to pass the desired JDK version down to javacc. Bugzilla report 38715. + +* prints passfile info at -verbose level instead of -info. Bugzilla + report 35268 + +* When can't find the compiler class, it prints out java.home for + immediate diagnostics + +* Ant launcher now supports a -main attribute so that you can specify an extension + class to the built in org.apache.tools.ant.Main class. This class must implement + the interface AntMain Changes from Ant 1.6.4 to Ant 1.6.5 ===================================