From 93a50c4b481a1870bf5d056a36482fee3fa42f75 Mon Sep 17 00:00:00 2001 From: Antoine Levy-Lambert Date: Wed, 13 Dec 2006 02:51:05 +0000 Subject: [PATCH] preparation for the 1.7.0 release git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@486471 13f79535-47bb-0310-9956-ffa450edef68 --- WHATSNEW | 442 +++++++++++++++------------------- build.xml | 2 +- docs/antnews.html | 15 +- docs/bindownload.html | 49 ++-- docs/bugs.html | 3 + docs/bylaws.html | 3 + docs/contributors.html | 3 + docs/external.html | 3 + docs/faq.html | 13 + docs/index.html | 22 +- docs/legal.html | 3 + docs/license.html | 3 + docs/mail.html | 3 + docs/manual/cover.html | 6 +- docs/manual/credits.html | 2 +- docs/mission.html | 3 + docs/nightlies.html | 201 ++++++++++++++++ docs/problems.html | 3 + docs/projects.html | 3 + docs/resources.html | 3 + docs/srcdownload.html | 49 ++-- docs/svn.html | 3 + xdocs/antnews.xml | 10 +- xdocs/bindownload.xml | 54 ++--- xdocs/faq.xml | 5 + xdocs/index.xml | 19 +- xdocs/nightlies.xml | 40 +++ xdocs/srcdownload.xml | 54 ++--- xdocs/stylesheets/project.xml | 1 + 29 files changed, 596 insertions(+), 424 deletions(-) create mode 100644 docs/nightlies.html create mode 100644 xdocs/nightlies.xml diff --git a/WHATSNEW b/WHATSNEW index 862447ea7..654d9d762 100644 --- a/WHATSNEW +++ b/WHATSNEW @@ -1,5 +1,5 @@ -Changes from Ant 1.7.0RC1 to current SVN version -================================================== +Changes from Ant 1.6.5 to Ant 1.7.0 +=================================== Changes that could break older environments: ------------------------------------------- @@ -12,6 +12,104 @@ Changes that could break older environments: * The -noproxy option which was in the previous 1.7 alpha and beta releases has been removed. It is the default behavior and not needed. +* Removed launcher classes from nodeps jar. + +* filter reader uses ISO-8859-1 encoding to read + the java class file. Bugzilla report 33604. + +* Defer reference process. Bugzilla 36955, 34458, 37688. + This may break build files in which a reference was set in a target which was + never executed. Historically, Ant would set the reference early on, during parse + time, so the datatype would be defined. Now it requires the reference to have + been in a bit of the build file which was actually executed. If you get + an error about an undefined reference, locate the reference and move it somewhere + where it is used, or fix the depends attribute of the target in question to + depend on the target which defines the reference/datatype. + +* +

+ +
+ + + + + + +
Apache Ant siteApache Ant logo +
+ + + + + + + + + + + + + + +
+ + + + +
+ the Apache Ant site +
+
+
+
+ +
+ + + + + +
+ + + + +
Home
+
+ + + + +
Projects
+
+
+ +
+ + +
 
+
+
+

Nightly Builds

+

+ + Nightly Builds +

+

If you wish to use the latest Ant features, you can try downloading a +nightly build. +

+

If you want to build Ant from sources, you can use a Subversion snapshot.

+ +
+
+ + + + + + + + + + + + + + + diff --git a/docs/problems.html b/docs/problems.html index 813c45410..589390a90 100644 --- a/docs/problems.html +++ b/docs/problems.html @@ -134,6 +134,9 @@
  • Subversion Repositories
  • +
  • + Nightly Builds +
  • Bug Database
  • diff --git a/docs/projects.html b/docs/projects.html index 5edd85162..6cb589c0d 100644 --- a/docs/projects.html +++ b/docs/projects.html @@ -134,6 +134,9 @@
  • Subversion Repositories
  • +
  • + Nightly Builds +
  • Bug Database
  • diff --git a/docs/resources.html b/docs/resources.html index 88c27104c..a0e3211ff 100644 --- a/docs/resources.html +++ b/docs/resources.html @@ -134,6 +134,9 @@
  • Subversion Repositories
  • +
  • + Nightly Builds +
  • Bug Database
  • diff --git a/docs/srcdownload.html b/docs/srcdownload.html index 275dd63ce..d47d4ae3e 100644 --- a/docs/srcdownload.html +++ b/docs/srcdownload.html @@ -132,6 +132,9 @@
  • Subversion Repositories
  • +
  • + Nightly Builds +
  • Bug Database
  • @@ -186,12 +189,6 @@ Thus they must be untarred with a GNU compatible version of the master distribution directory or, preferably, its mirror.

    - - Downloading Ant 1.7.0RC1 -

    -

    Betas and release candidates are not mirrored, you can find our latest -release at http://cvs.apache.org/dist/ant/.

    -

    Mirror

    @@ -217,11 +214,11 @@ Other mirrors:
    -

    Currently, Apache Ant 1.6.5 is the best available version, see the +

    Currently, Apache Ant 1.7.0 is the best available version, see the release notes.

    Note
    -
    Ant 1.6.5 has been released on 02-Jun-2005 and +
    Ant 1.7.0 has been released on 19-Dec-2006 and may not be available on all mirrors for a few days.


    @@ -100,37 +92,25 @@ may not be available on all mirrors for a few days.
    -
    - -

    Are currently not available, we hope to restore that service soon.

    - - - -

    If you want to build Ant from sources, you can use a Subversion snapshot.

    - -
    @@ -159,17 +139,17 @@ using

    % pgpk -a KEYS
    -% pgpv apache-ant-1.6.5-bin.tar.gz.asc
    +% pgpv apache-ant-1.7.0-bin.tar.gz.asc
    or
    % pgp -ka KEYS
    -% pgp apache-ant-1.6.5-bin.tar.gz.asc
    +% pgp apache-ant-1.7.0-bin.tar.gz.asc
    or
    % gpg --import KEYS
    -% gpg --verify apache-ant-1.6.5-bin.tar.gz.asc +% gpg --verify apache-ant-1.7.0-bin.tar.gz.asc

    Alternatively, you can verify the checksums on the files. Unix diff --git a/xdocs/faq.xml b/xdocs/faq.xml index 00452ee2e..78e19cd44 100644 --- a/xdocs/faq.xml +++ b/xdocs/faq.xml @@ -212,6 +212,11 @@ 1.6.5 2 June 2005 + + + 1.7.0 + 19 December 2006 + diff --git a/xdocs/index.xml b/xdocs/index.xml index abe1afb14..6071db5e3 100644 --- a/xdocs/index.xml +++ b/xdocs/index.xml @@ -24,13 +24,11 @@ -

    -

    November 12, 2006 - Ant 1.7.0RC1 Available

    -

    Apache Ant 1.7.0RC1 is now available for +

    December 19, 2006 - Ant 1.7.0 Available

    +

    Apache Ant 1.7.0 is now available for download.

    -

    The manual of the release candidate is available here.

    -

    Ant 1.7 introduces a resource framework. Some of the core ant tasks such as <copy/> are now able to process not only file system resources but also zip entries, tar entries, paths, ... @@ -47,8 +45,7 @@

    Ant 1.7 fixes also a large number of bugs.

    -

    Ant 1.7 has no support for Java6 features, but first tests on Java6 - did not fail.

    +

    Ant 1.7 has some initial support for Java6 features.

    @@ -74,14 +71,6 @@ href="antlibs/antunit/">AntUnit home page.

    -
    -

    June 2, 2005 - Ant 1.6.5 Available

    -

    Apache Ant 1.6.5 is now available for download.

    -

    This is a bug fix release.

    -
    - -

    diff --git a/xdocs/nightlies.xml b/xdocs/nightlies.xml new file mode 100644 index 000000000..65edc7dd1 --- /dev/null +++ b/xdocs/nightlies.xml @@ -0,0 +1,40 @@ + + + + + + Nightly Builds + + + + + +

    + +

    If you wish to use the latest Ant features, you can try downloading a +nightly build. +

    + +

    If you want to build Ant from sources, you can use a Subversion snapshot.

    + +
    + + + + diff --git a/xdocs/srcdownload.xml b/xdocs/srcdownload.xml index a686b93f6..5d9179580 100644 --- a/xdocs/srcdownload.xml +++ b/xdocs/srcdownload.xml @@ -47,14 +47,6 @@ directory or, preferably, its mirror.

    -
    - -

    Betas and release candidates are not mirrored, you can find our latest -release at http://cvs.apache.org/dist/ant/.

    - -
    -

    You are currently using [preferred]. If you encounter a @@ -80,12 +72,12 @@ Other mirrors: