diff --git a/WHATSNEW b/WHATSNEW
index 2f7fd76fb..14f22a5da 100644
--- a/WHATSNEW
+++ b/WHATSNEW
@@ -16,12 +16,6 @@ Other changes:
* Enable to choose the regexp implementation without system property.
Bugzilla Report 15390.
-* A new roundup attribute on and related task can be used to
- control whether the file modification times inside the archive will
- be rounded up or down (since zips only store modification times with
- a granularity of two seconds). The default remains to round up.
- Bugzilla Report 17934.
-
* Nested file mappers and a container mapper implementation have been
introduced. Additionally, the element now accepts "defined"
nested FileNameMapper implementations directly, allowing a usage
@@ -185,6 +179,11 @@ Other changes:
* Ignore built distributions. Bugzilla Report 28997.
+* A new roundup attribute on and related task can be used to
+ control whether the file modification times inside the archive will
+ be rounded up or down (since zips only store modification times with
+ a granularity of two seconds). The default remains to round up.
+ Bugzilla Report 17934.
Changes from Ant 1.6.0 to Ant 1.6.1
=============================================
diff --git a/docs/manual/CoreTasks/ear.html b/docs/manual/CoreTasks/ear.html
index 0f0f57c5a..787f24a8d 100644
--- a/docs/manual/CoreTasks/ear.html
+++ b/docs/manual/CoreTasks/ear.html
@@ -125,7 +125,7 @@ attributes of zipfilesets in a Zip or Jar task.)
lead to a different type of problems like JSPs inside a web
archive that seem to be slightly more recent than precompiled
pages, rendering precompilation useless.
- Defaults to true. Since Ant 1.7
+ Defaults to true. Since Ant 1.6.2
No |
diff --git a/docs/manual/CoreTasks/jar.html b/docs/manual/CoreTasks/jar.html
index 9b819b405..1ba0fc944 100644
--- a/docs/manual/CoreTasks/jar.html
+++ b/docs/manual/CoreTasks/jar.html
@@ -185,7 +185,7 @@ being wrapped and continued on the next line.
lead to a different type of problems like JSPs inside a web
archive that seem to be slightly more recent than precompiled
pages, rendering precompilation useless.
- Defaults to true. Since Ant 1.7
+ Defaults to true. Since Ant 1.6.2
No |
diff --git a/docs/manual/CoreTasks/war.html b/docs/manual/CoreTasks/war.html
index c51612935..78fdffc16 100644
--- a/docs/manual/CoreTasks/war.html
+++ b/docs/manual/CoreTasks/war.html
@@ -132,7 +132,7 @@ attributes of zipfilesets in a Zip or Jar task.)
lead to a different type of problems like JSPs inside a web
archive that seem to be slightly more recent than precompiled
pages, rendering precompilation useless.
- Defaults to true. Since Ant 1.7
+ Defaults to true. Since Ant 1.6.2
No |
diff --git a/docs/manual/CoreTasks/zip.html b/docs/manual/CoreTasks/zip.html
index 14ee4d7bc..2d828be6e 100644
--- a/docs/manual/CoreTasks/zip.html
+++ b/docs/manual/CoreTasks/zip.html
@@ -175,7 +175,7 @@ versions of zip and unzip for many Unix and Unix-like systems.
lead to a different type of problems like JSPs inside a web
archive that seem to be slightly more recent than precompiled
pages, rendering precompilation useless.
- Defaults to true. Since Ant 1.7
+ Defaults to true. Since Ant 1.6.2
No |
diff --git a/src/main/org/apache/tools/ant/taskdefs/Zip.java b/src/main/org/apache/tools/ant/taskdefs/Zip.java
index be3cfdd84..33eb0ee77 100644
--- a/src/main/org/apache/tools/ant/taskdefs/Zip.java
+++ b/src/main/org/apache/tools/ant/taskdefs/Zip.java
@@ -110,7 +110,7 @@ public class Zip extends MatchingTask {
* Whether the file modification times will be rounded up to the
* next even number of seconds.
*
- * @since Ant 1.7
+ * @since Ant 1.6.2
*/
private boolean roundUp = true;
@@ -303,7 +303,7 @@ public class Zip extends MatchingTask {
* JSPs inside a web archive that seem to be slightly more recent
* than precompiled pages, rendering precompilation useless.
*
- * @since Ant 1.7
+ * @since Ant 1.6.2
*/
public void setRoundUp(boolean r) {
roundUp = r;