Author: jochen
Date: Wed May 16 13:47:54 2007
New Revision: 538725
URL: http://svn.apache.org/viewvc?view=rev&rev=538725
Log:
Release related changes.
Added:
jakarta/commons/proper/io/branches/b1_3/xdocs/upgradeto1_3_2.xml
- copied, changed from r538699,
jakarta/commons/proper/io/branches/b1_3/xdocs/upgradeto1_4.xml
Removed:
jakarta/commons/proper/io/branches/b1_3/xdocs/upgradeto1_4.xml
Modified:
jakarta/commons/proper/io/branches/b1_3/RELEASE-NOTES.txt
jakarta/commons/proper/io/branches/b1_3/src/conf/MANIFEST.MF
jakarta/commons/proper/io/branches/b1_3/xdocs/building.xml
jakarta/commons/proper/io/branches/b1_3/xdocs/index.xml
jakarta/commons/proper/io/branches/b1_3/xdocs/navigation.xml
Modified: jakarta/commons/proper/io/branches/b1_3/RELEASE-NOTES.txt
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/io/branches/b1_3/RELEASE-NOTES.txt?view=diff&rev=538725&r1=538724&r2=538725
==============================================================================
--- jakarta/commons/proper/io/branches/b1_3/RELEASE-NOTES.txt (original)
+++ jakarta/commons/proper/io/branches/b1_3/RELEASE-NOTES.txt Wed May 16
13:47:54 2007
@@ -1,7 +1,7 @@
$Id$
Commons IO Package
- Version 1.3.1
+ Version 1.3.2
Release Notes
@@ -15,6 +15,15 @@
and endian transformation classes.
+Compatibility with 1.3.1
+----------------------
+Binary compatible - Yes
+
+Source compatible - Yes
+
+Semantic compatible - Yes
+
+
Compatibility with 1.3
----------------------
Binary compatible - No
@@ -26,12 +35,29 @@
Semantic compatible - Yes
+Enhancements since 1.3.1
+------------------------
+
+- Created the FileCleaningTracker, basically a non-static version of the
+ FileCleaner, which can be controlled by the user. [IO-116]
+- The FileCleaner is deprecated.
+
+
+Bug fixes from 1.3.1
+--------------------
+
+- Some tests, which are implicitly assuming a Unix-like file system, are
+ now skipped on Windows. [IO-115]
+
+
+
Bug fixes from 1.3
------------------
- FileUtils
- NPE in openOutputStream(File) when file has no parent in path [IO-112]
- readFileToString(File) is not static [IO-113]
+
Feedback
--------
Modified: jakarta/commons/proper/io/branches/b1_3/src/conf/MANIFEST.MF
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/io/branches/b1_3/src/conf/MANIFEST.MF?view=diff&rev=538725&r1=538724&r2=538725
==============================================================================
--- jakarta/commons/proper/io/branches/b1_3/src/conf/MANIFEST.MF (original)
+++ jakarta/commons/proper/io/branches/b1_3/src/conf/MANIFEST.MF Wed May 16
13:47:54 2007
@@ -1,10 +1,10 @@
Manifest-Version: 1.0
Package: org.apache.commons.io
Extension-Name: commons-io
-Specification-Version: 1.3.1
+Specification-Version: 1.3.2
Specification-Vendor: Apache Software Foundation
Specification-Title: Commons IO
-Implementation-Version: 1.3.1
+Implementation-Version: 1.3.2
Implementation-Vendor: Apache Software Foundation
Implementation-Title: Commons IO
Implementation-Vendor-Id: org.apache
Modified: jakarta/commons/proper/io/branches/b1_3/xdocs/building.xml
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/io/branches/b1_3/xdocs/building.xml?view=diff&rev=538725&r1=538724&r2=538725
==============================================================================
--- jakarta/commons/proper/io/branches/b1_3/xdocs/building.xml (original)
+++ jakarta/commons/proper/io/branches/b1_3/xdocs/building.xml Wed May 16
13:47:54 2007
@@ -29,6 +29,7 @@
</p>
<p>
You may also be interested in the upgrade notes:<br />
+ Upgrade <a href="upgradeto1_3_2.html">from 1.3, or 1.3.1 to 1.3.2</a><br />
Upgrade <a href="upgradeto1_3_1.html">from 1.3 to 1.3.1</a><br />
Upgrade <a href="upgradeto1_3.html">from 1.2 to 1.3</a><br />
Upgrade <a href="upgradeto1_2.html">from 1.1 to 1.2</a><br />
Modified: jakarta/commons/proper/io/branches/b1_3/xdocs/index.xml
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/io/branches/b1_3/xdocs/index.xml?view=diff&rev=538725&r1=538724&r2=538725
==============================================================================
--- jakarta/commons/proper/io/branches/b1_3/xdocs/index.xml (original)
+++ jakarta/commons/proper/io/branches/b1_3/xdocs/index.xml Wed May 16 13:47:54
2007
@@ -40,13 +40,14 @@
<p>
A getting started <a href="description.html">user guide</a> is available,
as are some IO <a href="bestpractices.html">best practices</a>
-and various <a href="maven-reports.html">project reports</a>.
+and various <a href="project-reports.html">project reports</a>.
</p>
<p>
The JavaDoc API documents are available online:
</p>
<ul>
-<li>The <a href="api-release/index.html">current release 1.3.1</a></li>
+<li>The <a href="api-release/index.html">current release 1.3.2</a></li>
+<li>The <a href="api-1.3.1/index.html">previous version 1.3.1</a></li>
<li>The <a href="api-1.3/index.html">previous version 1.3</a></li>
<li>The <a href="api-1.2/index.html">previous version 1.2</a></li>
<li>The <a href="api-1.1/index.html">previous version 1.1</a></li>
@@ -60,9 +61,9 @@
<!-- ================================================== -->
<section name="Releases">
<p>
-The latest version is v1.3.1. -
+The latest version is v1.3.2. -
<a
href="http://jakarta.apache.org/site/downloads/downloads_commons-io.cgi">Download
now!</a><br />
-The <a href="upgradeto1_3_1.html">upgrade notes</a> are also available.
+The <a href="upgradeto1_3_2.html">upgrade notes</a> are also available.
</p>
<p>
Modified: jakarta/commons/proper/io/branches/b1_3/xdocs/navigation.xml
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/io/branches/b1_3/xdocs/navigation.xml?view=diff&rev=538725&r1=538724&r2=538725
==============================================================================
--- jakarta/commons/proper/io/branches/b1_3/xdocs/navigation.xml (original)
+++ jakarta/commons/proper/io/branches/b1_3/xdocs/navigation.xml Wed May 16
13:47:54 2007
@@ -1,5 +1,21 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE org.apache.commons.menus SYSTEM
'http://jakarta.apache.org/commons/build/maven-build.dtd'>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements. See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
<project name="Commons IO">
<title>Commons IO</title>
@@ -15,7 +31,7 @@
<item name="User guide" href="/description.html"/>
<item name="Best practices" href="/bestpractices.html"/>
<!--item name="History" href="/history.html"/-->
- <item name="Javadoc (1.3.1 release)" href="api-release/index.html"/>
+ <item name="Javadoc (1.3.2 release)" href="api-release/index.html"/>
</menu>
<menu name="Development">
Copied: jakarta/commons/proper/io/branches/b1_3/xdocs/upgradeto1_3_2.xml (from
r538699, jakarta/commons/proper/io/branches/b1_3/xdocs/upgradeto1_4.xml)
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/io/branches/b1_3/xdocs/upgradeto1_3_2.xml?view=diff&rev=538725&p1=jakarta/commons/proper/io/branches/b1_3/xdocs/upgradeto1_4.xml&r1=538699&p2=jakarta/commons/proper/io/branches/b1_3/xdocs/upgradeto1_3_2.xml&r2=538725
==============================================================================
--- jakarta/commons/proper/io/branches/b1_3/xdocs/upgradeto1_4.xml (original)
+++ jakarta/commons/proper/io/branches/b1_3/xdocs/upgradeto1_3_2.xml Wed May 16
13:47:54 2007
@@ -17,7 +17,7 @@
-->
<document>
<properties>
- <title>Upgrade from 1.3 to 1.4</title>
+ <title>Upgrade from 1.3, or 1.3.1, to 1.3.2</title>
<author email="[email protected]">Commons Documentation
Team</author>
</properties>
<body>
@@ -25,7 +25,7 @@
<section name="Upgrade">
<p>
These are the release notes and advice for upgrading Commons-IO from
-version 1.3 to version 1.4.
+version 1.3, or 1.3.1, to version 1.3.2.
<source>
Commons IO is a package of Java utility classes for java.io's hierarchy.
Classes in this package are considered to be so standard and of such high
@@ -35,8 +35,8 @@
and endian transformation classes.
-Compatibility with 1.3
-----------------------
+Compatibility with 1.3.1
+------------------------
Binary compatible - Yes
Source compatible - Yes
@@ -45,18 +45,38 @@
Check the bug fixes section for semantic bug fixes
-Deprecations from 1.3
----------------------
-- FileCleaner deprecated, replaced by FileCleaningTracker
- - the old class allowed static use only.
- - instances of the new class may be put into arbitrary scope.
+Compatibility with 1.3
+----------------------
+Binary compatible - No
+ See [IO-113]
+
+Source compatible - No
+ See [IO-113]
+
+Semantic compatible - Yes
+
+
+Enhancements since 1.3.1
+------------------------
+
+- Created the FileCleaningTracker, basically a non-static version of the
+ FileCleaner, which can be controlled by the user. [IO-116]
+- The FileCleaner is deprecated.
+
+
+Bug fixes from 1.3.1
+--------------------
+
+- Some tests, which are implicitly assuming a Unix-like file system, are
+ now skipped on Windows. [IO-115]
-Bug fixes from 1.2
+Bug fixes from 1.3
------------------
-Enhancements from 1.2
----------------------
+- FileUtils
+ - NPE in openOutputStream(File) when file has no parent in path [IO-112]
+ - readFileToString(File) is not static [IO-113]
</source>
</p>
</section>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]