This is an automated email from the ASF dual-hosted git repository. solomax pushed a commit to annotated tag collections-4.3-RC2 in repository https://gitbox.apache.org/repos/asf/commons-collections.git
commit 77e37dbf238d26351edb29e95391e3df75095d01 Author: Maxim Solodovnik <[email protected]> AuthorDate: Wed Dec 26 20:04:11 2018 +0700 index.xml is updated with version 4.3, release notes for 4.3 is created --- src/site/xdoc/index.xml | 6 ++-- src/site/xdoc/release_4_3.xml | 66 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 69 insertions(+), 3 deletions(-) diff --git a/src/site/xdoc/index.xml b/src/site/xdoc/index.xml index 2edeb33..a9723a5 100644 --- a/src/site/xdoc/index.xml +++ b/src/site/xdoc/index.xml @@ -57,7 +57,7 @@ as are various <a href="project-reports.html">project reports</a>. The Javadoc API documents are available online: </p> <ul> -<li>The <a href="javadocs/api-4.2/index.html">current release 4.2</a></li> +<li>The <a href="javadocs/api-4.3/index.html">current release 4.3</a></li> <li>The latest 3.x release - <a href="javadocs/api-3.2.2/index.html">version 3.2.2</a></li> <li>The latest 2.x release - <a href="javadocs/api-2.1.1/index.html">version 2.1.1</a></li> <li>The <a href="apidocs/index.html">latest from repository sources</a></li> @@ -71,9 +71,9 @@ The <a href="source-repository.html">git repository</a> can be <!-- ================================================== --> <section name="Releases"> <p> -The latest version is 4.2 - +The latest version is 4.3 - <a href="http://commons.apache.org/collections/download_collections.cgi">Download now!</a><br /> -It is built for Java 7 and later, and the <a href="release_4_2.html">release notes</a> are also available. +It is built for Java 8 and later, and the <a href="release_4_3.html">release notes</a> are also available. </p> <p> For previous releases, see the <a href="http://archive.apache.org/dist/commons/collections/">Apache Archive</a> diff --git a/src/site/xdoc/release_4_3.xml b/src/site/xdoc/release_4_3.xml new file mode 100644 index 0000000..a147dba --- /dev/null +++ b/src/site/xdoc/release_4_3.xml @@ -0,0 +1,66 @@ +<?xml version="1.0"?> +<!-- + 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. +--> +<document> + <properties> + <title>Release notes for v4.3</title> + <author email="[email protected]">Commons Documentation Team</author> + </properties> +<body> + +<section name="Release notes for version 4.3"> +<hr /> +<p> +Apache Commons Collections is a project to develop and maintain collection +classes based on and inspired by the JDK collection framework. +</p> +<p> +This 4.3 release is a minor and updates the platform requirement from Java 7 to 8. +This release fixes several bugs present in previous releases of the 4.X branch. +</p> +<p> +All users are strongly encouraged to updated to this release. +</p> + +<h3>Compatibility</h3> +<ul> + <li>Java 8 or later is now required (version 4.2 required Java 7)</li> + <li>This release is source and binary compatible with the 4.0 release + of Commons Collections with the exception that some classes in the functor + package do not implement the Serializable interface anymore (see COLLECTIONS-580)</li> +</ul> + +<center><h3>Major changes since 4.2</h3></center> +<ul> +<li>Updates the platform requirement from Java 7 to 8</li> +<li>Add Automatic-Module-Name MANIFEST entry for Java 9 compatibility</li> +<li>Added a few new APIs.</li> +</ul> + +<h3>Security Changes</h3> +<p> +None. +</p> + +<p> +For a full list of changes in this release, refer to the <a href="changes-report.html#a4.3">Change report</a>. +</p> +</section> + +</body> +</document> +
