Author: niallp
Date: Wed Mar 24 16:54:07 2010
New Revision: 927118
URL: http://svn.apache.org/viewvc?rev=927118&view=rev
Log:
Prepare for 1.8.3 release
Modified:
commons/proper/beanutils/trunk/build.xml
commons/proper/beanutils/trunk/pom.xml
commons/proper/beanutils/trunk/src/changes/changes.xml
commons/proper/beanutils/trunk/src/site/site.xml
commons/proper/beanutils/trunk/src/site/xdoc/download_beanutils.xml
commons/proper/beanutils/trunk/src/site/xdoc/index.xml
Modified: commons/proper/beanutils/trunk/build.xml
URL:
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/build.xml?rev=927118&r1=927117&r2=927118&view=diff
==============================================================================
--- commons/proper/beanutils/trunk/build.xml (original)
+++ commons/proper/beanutils/trunk/build.xml Wed Mar 24 16:54:07 2010
@@ -43,7 +43,7 @@
<property name="component.title" value="Bean Introspection
Utilities"/>
<!-- The current version number of this component -->
- <property name="component.version" value="1.8.3-SNAPSHOT"/>
+ <property name="component.version" value="1.8.3"/>
<!-- The base directory for compilation targets -->
<property name="build.home" value="target"/>
Modified: commons/proper/beanutils/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/pom.xml?rev=927118&r1=927117&r2=927118&view=diff
==============================================================================
--- commons/proper/beanutils/trunk/pom.xml (original)
+++ commons/proper/beanutils/trunk/pom.xml Wed Mar 24 16:54:07 2010
@@ -27,7 +27,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
- <version>1.8.3-SNAPSHOT</version>
+ <version>1.8.3</version>
<name>Commons BeanUtils</name>
<inceptionYear>2000</inceptionYear>
@@ -230,7 +230,7 @@
<maven.compile.source>1.3</maven.compile.source>
<maven.compile.target>1.3</maven.compile.target>
<commons.componentid>beanutils</commons.componentid>
- <commons.release.version>1.8.2</commons.release.version>
+ <commons.release.version>1.8.3</commons.release.version>
<commons.jira.id>BEANUTILS</commons.jira.id>
<commons.jira.pid>12310460</commons.jira.pid>
<commons.osgi.export>
Modified: commons/proper/beanutils/trunk/src/changes/changes.xml
URL:
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/changes/changes.xml?rev=927118&r1=927117&r2=927118&view=diff
==============================================================================
--- commons/proper/beanutils/trunk/src/changes/changes.xml (original)
+++ commons/proper/beanutils/trunk/src/changes/changes.xml Wed Mar 24 16:54:07
2010
@@ -39,7 +39,7 @@ The <action> type attribute can be add,u
</properties>
<body>
- <release version="1.8.3" date="in SVN" description="Bug fix for 1.8.2">
+ <release version="1.8.3" date="2010-03-28" description="Bug fix for 1.8.2">
<action dev="niallp" type="fix" issue="BEANUTILS-373" due-to="Andrew
Sunde">
MethodUtils is not thread safe because WeakFastHashMap which uses
WeakHashMap is not thread-safe
(duplicate of BEANUTILS-318 which was not fixed properly in BeanUtils
1.8.0).
Modified: commons/proper/beanutils/trunk/src/site/site.xml
URL:
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/site/site.xml?rev=927118&r1=927117&r2=927118&view=diff
==============================================================================
--- commons/proper/beanutils/trunk/src/site/site.xml (original)
+++ commons/proper/beanutils/trunk/src/site/site.xml Wed Mar 24 16:54:07 2010
@@ -35,22 +35,12 @@
<menu name="Documentation">
<item name="Building" href="/building.html"/>
- <!-- item name="History" href="/changes-report.html"/
-->
+ <item name="History" href="/changes-report.html"/>
<item name="Wiki"
href="http://wiki.apache.org/commons/BeanUtils"/>
- <item name="1.8.2">
- <item name="Release Notes"
href='http://commons.apache.org/beanutils/v1.8.2/RELEASE-NOTES.txt'/>
- <item name="User Guide"
href="http://commons.apache.org/beanutils/v1.8.2/apidocs/org/apache/commons/beanutils/package-summary.html#package_description"/>
- <item name="API"
href="http://commons.apache.org/beanutils/v1.8.2/apidocs/index.html"/>
- </item>
- <item name="1.8.1">
- <item name="Release Notes"
href='http://commons.apache.org/beanutils/v1.8.1/RELEASE-NOTES.txt'/>
- <item name="User Guide"
href="http://commons.apache.org/beanutils/v1.8.1/apidocs/org/apache/commons/beanutils/package-summary.html#package_description"/>
- <item name="API"
href="http://commons.apache.org/beanutils/v1.8.1/apidocs/index.html"/>
- </item>
- <item name="1.8.0">
- <item name="Release Notes"
href='http://commons.apache.org/beanutils/v1.8.0/RELEASE-NOTES.txt'/>
- <item name="User Guide"
href="http://commons.apache.org/beanutils/v1.8.0/apidocs/org/apache/commons/beanutils/package-summary.html#package_description"/>
- <item name="API"
href="http://commons.apache.org/beanutils/v1.8.0/apidocs/index.html"/>
+ <item name="1.8.3">
+ <item name="Release Notes"
href='http://commons.apache.org/beanutils/v1.8.3/RELEASE-NOTES.txt'/>
+ <item name="User Guide"
href="http://commons.apache.org/beanutils/v1.8.3/apidocs/org/apache/commons/beanutils/package-summary.html#package_description"/>
+ <item name="API"
href="http://commons.apache.org/beanutils/v1.8.3/apidocs/index.html"/>
</item>
<item name="1.7.0 Release">
<item name="User Guide"
href="http://commons.apache.org/beanutils/commons-beanutils-1.7.0/docs/api/org/apache/commons/beanutils/package-summary.html#package_description"/>
Modified: commons/proper/beanutils/trunk/src/site/xdoc/download_beanutils.xml
URL:
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/site/xdoc/download_beanutils.xml?rev=927118&r1=927117&r2=927118&view=diff
==============================================================================
--- commons/proper/beanutils/trunk/src/site/xdoc/download_beanutils.xml
(original)
+++ commons/proper/beanutils/trunk/src/site/xdoc/download_beanutils.xml Wed Mar
24 16:54:07 2010
@@ -95,32 +95,32 @@ limitations under the License.
</p>
</subsection>
</section>
- <section name="Commons BeanUtils 1.8.2 ">
+ <section name="Commons BeanUtils 1.8.3 ">
<subsection name="Binaries">
<table>
<tr>
- <td><a
href="[preferred]/commons/beanutils/binaries/commons-beanutils-1.8.2-bin.tar.gz">commons-beanutils-1.8.2-bin.tar.gz</a></td>
- <td><a
href="http://www.apache.org/dist/commons/beanutils/binaries/commons-beanutils-1.8.2-bin.tar.gz.md5">md5</a></td>
- <td><a
href="http://www.apache.org/dist/commons/beanutils/binaries/commons-beanutils-1.8.2-bin.tar.gz.asc">pgp</a></td>
+ <td><a
href="[preferred]/commons/beanutils/binaries/commons-beanutils-1.8.3-bin.tar.gz">commons-beanutils-1.8.3-bin.tar.gz</a></td>
+ <td><a
href="http://www.apache.org/dist/commons/beanutils/binaries/commons-beanutils-1.8.3-bin.tar.gz.md5">md5</a></td>
+ <td><a
href="http://www.apache.org/dist/commons/beanutils/binaries/commons-beanutils-1.8.3-bin.tar.gz.asc">pgp</a></td>
</tr>
<tr>
- <td><a
href="[preferred]/commons/beanutils/binaries/commons-beanutils-1.8.2-bin.zip">commons-beanutils-1.8.2-bin.zip</a></td>
- <td><a
href="http://www.apache.org/dist/commons/beanutils/binaries/commons-beanutils-1.8.2-bin.zip.md5">md5</a></td>
- <td><a
href="http://www.apache.org/dist/commons/beanutils/binaries/commons-beanutils-1.8.2-bin.zip.asc">pgp</a></td>
+ <td><a
href="[preferred]/commons/beanutils/binaries/commons-beanutils-1.8.3-bin.zip">commons-beanutils-1.8.3-bin.zip</a></td>
+ <td><a
href="http://www.apache.org/dist/commons/beanutils/binaries/commons-beanutils-1.8.3-bin.zip.md5">md5</a></td>
+ <td><a
href="http://www.apache.org/dist/commons/beanutils/binaries/commons-beanutils-1.8.3-bin.zip.asc">pgp</a></td>
</tr>
</table>
</subsection>
<subsection name="Source">
<table>
<tr>
- <td><a
href="[preferred]/commons/beanutils/source/commons-beanutils-1.8.2-src.tar.gz">commons-beanutils-1.8.2-src.tar.gz</a></td>
- <td><a
href="http://www.apache.org/dist/commons/beanutils/source/commons-beanutils-1.8.2-src.tar.gz.md5">md5</a></td>
- <td><a
href="http://www.apache.org/dist/commons/beanutils/source/commons-beanutils-1.8.2-src.tar.gz.asc">pgp</a></td>
+ <td><a
href="[preferred]/commons/beanutils/source/commons-beanutils-1.8.3-src.tar.gz">commons-beanutils-1.8.3-src.tar.gz</a></td>
+ <td><a
href="http://www.apache.org/dist/commons/beanutils/source/commons-beanutils-1.8.3-src.tar.gz.md5">md5</a></td>
+ <td><a
href="http://www.apache.org/dist/commons/beanutils/source/commons-beanutils-1.8.3-src.tar.gz.asc">pgp</a></td>
</tr>
<tr>
- <td><a
href="[preferred]/commons/beanutils/source/commons-beanutils-1.8.2-src.zip">commons-beanutils-1.8.2-src.zip</a></td>
- <td><a
href="http://www.apache.org/dist/commons/beanutils/source/commons-beanutils-1.8.2-src.zip.md5">md5</a></td>
- <td><a
href="http://www.apache.org/dist/commons/beanutils/source/commons-beanutils-1.8.2-src.zip.asc">pgp</a></td>
+ <td><a
href="[preferred]/commons/beanutils/source/commons-beanutils-1.8.3-src.zip">commons-beanutils-1.8.3-src.zip</a></td>
+ <td><a
href="http://www.apache.org/dist/commons/beanutils/source/commons-beanutils-1.8.3-src.zip.md5">md5</a></td>
+ <td><a
href="http://www.apache.org/dist/commons/beanutils/source/commons-beanutils-1.8.3-src.zip.asc">pgp</a></td>
</tr>
</table>
</subsection>
Modified: commons/proper/beanutils/trunk/src/site/xdoc/index.xml
URL:
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/site/xdoc/index.xml?rev=927118&r1=927117&r2=927118&view=diff
==============================================================================
--- commons/proper/beanutils/trunk/src/site/xdoc/index.xml (original)
+++ commons/proper/beanutils/trunk/src/site/xdoc/index.xml Wed Mar 24 16:54:07
2010
@@ -102,32 +102,41 @@ note the property reference syntax optio
<section name="Releases">
-<subsection name="1.8.2">
-<p>
-BeanUtils <strong>1.8.2</strong> is binary compatible with version 1.8.1 and
contains
-<a href="http://commons.apache.org/beanutils/v1.8.2/RELEASE-NOTES.txt">
-bug fixes</a> for 1.8.1. BeanUtils 1.8.2 requires a minimum of JDK 1.3.
-</p>
-<p>
-BeanUtils 1.8.2 is available to download
-<a href="http://commons.apache.org/beanutils/download_beanutils.cgi">here</a>.
-</p>
-</subsection>
-<subsection name="1.8.1">
-<p>
-BeanUtils <strong>1.8.1</strong> is binary compatible with version 1.8.0
-and contains a number
-<a href="http://commons.apache.org/beanutils/v1.8.1/RELEASE-NOTES.txt">
-bug fixes</a> for 1.8.0. BeanUtils 1.8.1 requires a minimum of JDK 1.3.
-</p>
-</subsection>
-<subsection name="1.8.0">
-<p>
-BeanUtils <strong>1.8.0</strong> is binary compatible with version 1.7.0
-and contains quite a few
-<a href="http://commons.apache.org/beanutils/v1.8.0/RELEASE-NOTES.txt">
-bug fixes and enhancements</a>.
-</p>
+<subsection name="1.8.x releases">
+ <p>
+ BeanUtils <strong>1.8.x</strong> releases are binary compatible with
version 1.7.0 and
+ require a minimum of JDK 1.3.
+ </p>
+ <p>
+ The latest BeanUtils release is available to download
+ <a
href="http://commons.apache.org/beanutils/download_beanutils.cgi">here</a>.
+ </p>
+ <ul>
+ <li>1.8.3
+ <ul>
+ <li><a
href="http://commons.apache.org/beanutils/v1.8.3/RELEASE-NOTES.txt">Release
Notes</a></li>
+ <li><a
href="http://commons.apache.org/beanutils/v1.8.3/apidocs/index.html">JavaDoc</a></li>
+ </ul>
+ </li>
+ <li>1.8.2
+ <ul>
+ <li><a
href="http://commons.apache.org/beanutils/v1.8.2/RELEASE-NOTES.txt">Release
Notes</a></li>
+ <li><a
href="http://commons.apache.org/beanutils/v1.8.2/apidocs/index.html">JavaDoc</a></li>
+ </ul>
+ </li>
+ <li>1.8.1
+ <ul>
+ <li><a
href="http://commons.apache.org/beanutils/v1.8.1/RELEASE-NOTES.txt">Release
Notes</a></li>
+ <li><a
href="http://commons.apache.org/beanutils/v1.8.1/apidocs/index.html">JavaDoc</a></li>
+ </ul>
+ </li>
+ <li>1.8.0
+ <ul>
+ <li><a
href="http://commons.apache.org/beanutils/v1.8.0/RELEASE-NOTES.txt">Release
Notes</a></li>
+ <li><a
href="http://commons.apache.org/beanutils/v1.8.0/apidocs/index.html">JavaDoc</a></li>
+ </ul>
+ </li>
+ </ul>
</subsection>
<subsection name="1.7.0">
<p>