Author: bodewig
Date: Wed May 23 16:01:31 2012
New Revision: 1341924
URL: http://svn.apache.org/viewvc?rev=1341924&view=rev
Log:
1.8.4 is out, bump version
Modified:
ant/core/branches/ANT_18_BRANCH/WHATSNEW
ant/core/branches/ANT_18_BRANCH/build.xml
ant/core/branches/ANT_18_BRANCH/manual/cover.html
ant/core/branches/ANT_18_BRANCH/manual/credits.html
ant/core/branches/ANT_18_BRANCH/src/etc/testcases/taskdefs/conditions/antversion.xml
Modified: ant/core/branches/ANT_18_BRANCH/WHATSNEW
URL:
http://svn.apache.org/viewvc/ant/core/branches/ANT_18_BRANCH/WHATSNEW?rev=1341924&r1=1341923&r2=1341924&view=diff
==============================================================================
--- ant/core/branches/ANT_18_BRANCH/WHATSNEW (original)
+++ ant/core/branches/ANT_18_BRANCH/WHATSNEW Wed May 23 16:01:31 2012
@@ -20,6 +20,10 @@ Fixed bugs:
speed up compression in certain edge cases. Merge from Commons
Compress.
+ Using specially crafted inputs this can be used as a denial of
+ service attack.
+ See http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2012-2098
+
Changes from Ant 1.8.2 TO Ant 1.8.3
===================================
Modified: ant/core/branches/ANT_18_BRANCH/build.xml
URL:
http://svn.apache.org/viewvc/ant/core/branches/ANT_18_BRANCH/build.xml?rev=1341924&r1=1341923&r2=1341924&view=diff
==============================================================================
--- ant/core/branches/ANT_18_BRANCH/build.xml (original)
+++ ant/core/branches/ANT_18_BRANCH/build.xml Wed May 23 16:01:31 2012
@@ -34,10 +34,10 @@
<property name="name" value="ant"/>
<!-- this is the groupId of ant in the Maven repository -->
<property name="groupid" value="org/apache/ant"/>
- <property name="project.version" value="1.8.4alpha"/>
+ <property name="project.version" value="1.8.5alpha"/>
<!-- pom.version is used when doing a distribution and must match with what
is checked in under src/etc/poms -->
- <property name="pom.version" value="1.8.4-SNAPSHOT"/>
- <property name="manifest-version" value="1.8.4"/>
+ <property name="pom.version" value="1.8.5-SNAPSHOT"/>
+ <property name="manifest-version" value="1.8.5"/>
<property name="bootstrap.jar" value="ant-bootstrap.jar"/>
<property name="ant.package" value="org/apache/tools/ant"/>
Modified: ant/core/branches/ANT_18_BRANCH/manual/cover.html
URL:
http://svn.apache.org/viewvc/ant/core/branches/ANT_18_BRANCH/manual/cover.html?rev=1341924&r1=1341923&r2=1341924&view=diff
==============================================================================
--- ant/core/branches/ANT_18_BRANCH/manual/cover.html (original)
+++ ant/core/branches/ANT_18_BRANCH/manual/cover.html Wed May 23 16:01:31 2012
@@ -19,14 +19,14 @@
<head>
<meta http-equiv="Content-Language" content="en-us">
<link rel="stylesheet" type="text/css" href="stylesheets/style.css">
-<title>Apache Ant 1.8.4 User Manual</title>
+<title>Apache Ant 1.8.5 User Manual</title>
</head>
<body bgcolor="#FFFFFF">
<div align="center">
<h1><img src="images/ant_logo_large.gif" width="190" height="120"></h1>
- <h1>Apache Ant™ 1.8.4 Manual</h1>
- <p align="left">This is the manual for version 1.8.4 of
+ <h1>Apache Ant™ 1.8.5 Manual</h1>
+ <p align="left">This is the manual for version 1.8.5 of
<a target="_top" href="http://ant.apache.org/index.html">Apache Ant</a>.
If your version
of Ant (as verified with <tt>ant -version</tt>) is older or newer than
this
Modified: ant/core/branches/ANT_18_BRANCH/manual/credits.html
URL:
http://svn.apache.org/viewvc/ant/core/branches/ANT_18_BRANCH/manual/credits.html?rev=1341924&r1=1341923&r2=1341924&view=diff
==============================================================================
--- ant/core/branches/ANT_18_BRANCH/manual/credits.html (original)
+++ ant/core/branches/ANT_18_BRANCH/manual/credits.html Wed May 23 16:01:31 2012
@@ -62,7 +62,7 @@
</ul>
<center>
-<p>Version: 1.8.4</p>
+<p>Version: 1.8.5</p>
</center>
Modified:
ant/core/branches/ANT_18_BRANCH/src/etc/testcases/taskdefs/conditions/antversion.xml
URL:
http://svn.apache.org/viewvc/ant/core/branches/ANT_18_BRANCH/src/etc/testcases/taskdefs/conditions/antversion.xml?rev=1341924&r1=1341923&r2=1341924&view=diff
==============================================================================
---
ant/core/branches/ANT_18_BRANCH/src/etc/testcases/taskdefs/conditions/antversion.xml
(original)
+++
ant/core/branches/ANT_18_BRANCH/src/etc/testcases/taskdefs/conditions/antversion.xml
Wed May 23 16:01:31 2012
@@ -32,10 +32,10 @@
<fail>
<condition>
<not>
- <antversion exactly="1.8.4" />
+ <antversion exactly="1.8.5" />
</not>
</condition>
- Should be exactly 1.8.4
+ Should be exactly 1.8.5
</fail>
</target>
@@ -45,10 +45,10 @@
<fail>
<condition>
<not>
- <antversion atleast="1.8.4" />
+ <antversion atleast="1.8.5" />
</not>
</condition>
- Should be at least 1.8.4
+ Should be at least 1.8.5
</fail>
</target>
@@ -57,10 +57,10 @@
<fail>
<condition>
<not>
- <antversion exactly="1.8.4" />
+ <antversion exactly="1.8.5" />
</not>
</condition>
- Should be exactly 1.8.4
+ Should be exactly 1.8.5
</fail>
</target>
</project>