You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2013/11/10 23:11:43 UTC

svn commit: r1540564 - in /commons/proper/collections/trunk: RELEASE-NOTES.txt src/site/xdoc/release_4_0.xml

Author: tn
Date: Sun Nov 10 22:11:43 2013
New Revision: 1540564

URL: http://svn.apache.org/r1540564
Log:
Improve release notes with feedback from ebourg.

Modified:
    commons/proper/collections/trunk/RELEASE-NOTES.txt
    commons/proper/collections/trunk/src/site/xdoc/release_4_0.xml

Modified: commons/proper/collections/trunk/RELEASE-NOTES.txt
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/RELEASE-NOTES.txt?rev=1540564&r1=1540563&r2=1540564&view=diff
==============================================================================
--- commons/proper/collections/trunk/RELEASE-NOTES.txt (original)
+++ commons/proper/collections/trunk/RELEASE-NOTES.txt Sun Nov 10 22:11:43 2013
@@ -25,12 +25,13 @@ These release notes will try to guide yo
 should remember that this is a new API based on the original, so some concepts
 have changed.
 
-Compatibility with previous releases
-------------------------------------
+Compatibility
+-------------
 
-This release is not source or binary compatible with previous releases of
-Commons Collections. This includes releases from the 3.x branch as well as
-preceding alpha releases for 4.0 (see details of changes below).
+ o Java 5 or later is required.
+ o This release is not source or binary compatible with previous releases of
+   Commons Collections. This includes releases from the 3.x branch as well as
+   preceding alpha releases for 4.0 (see details of changes below).
 
 
 Major changes since 3.2.1
@@ -70,7 +71,7 @@ Removed classes
    - BoundedBuffer: use either ArrayBlockingBuffer(capacity) or LinkedBlockingBuffer(capacity) in java.util.concurrent
    - UnboundedFifoBuffer: use either java.util.LinkedList or java.util.concurrent.LinkedBlockingBuffer
                      
- o [COLLECTIONS-351] Removed features now supported by the JDK
+ o [COLLECTIONS-351] Removed features now supported by the JDK or other Apache Commons libraries
  
    - FastArrayList: use java.util.concurrent.CopyOnWriteArrayList
    - FastHashMap: use java.util.concurrent.ConcurrentHashMap, but beware of null keys and values

Modified: commons/proper/collections/trunk/src/site/xdoc/release_4_0.xml
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/site/xdoc/release_4_0.xml?rev=1540564&r1=1540563&r2=1540564&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/site/xdoc/release_4_0.xml (original)
+++ commons/proper/collections/trunk/src/site/xdoc/release_4_0.xml Sun Nov 10 22:11:43 2013
@@ -53,9 +53,12 @@ have changed.
 <hr />
 
 <center><h3>Compatibility</h3></center>
-<p>
-This release is <b>not</b> source or binary compatible with v3.x.
-</p>
+<ul>
+ <li>Java 5 or later is required</li>
+ <li>This release is <b>not</b> source or binary compatible with previous releases of
+     Commons Collections. This includes releases from the 3.x branch as well as
+     preceding alpha releases for 4.0 (see details of changes below)</li>
+</ul>
 
 <center><h3>Major changes since 3.2.1</h3></center>
 <ul>
@@ -78,7 +81,7 @@ This release is <b>not</b> source or bin
    <li>UnboundedFifoBuffer: use either java.util.LinkedList or java.util.concurrent.LinkedBlockingBuffer</li>
    </ul>
 </li>                     
-<li>Removed features now supported by the JDK
+<li>Removed features now supported by the JDK or other Apache Commons libraries
   <ul>
   <li>FastArrayList: use java.util.concurrent.CopyOnWriteArrayList</li>
   <li>FastHashMap: use java.util.concurrent.ConcurrentHashMap, but beware of null keys and values</li>