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/07/05 22:10:17 UTC

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

Author: tn
Date: Fri Jul  5 20:10:16 2013
New Revision: 1500115

URL: http://svn.apache.org/r1500115
Log:
Update release notes with notes about compatibility, document changes since 4.0-alpha1.

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=1500115&r1=1500114&r2=1500115&view=diff
==============================================================================
--- commons/proper/collections/trunk/RELEASE-NOTES.txt (original)
+++ commons/proper/collections/trunk/RELEASE-NOTES.txt Fri Jul  5 20:10:16 2013
@@ -25,6 +25,14 @@ 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
+------------------------------------
+
+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
 -------------------------
 
@@ -35,6 +43,12 @@ Major changes since 3.2.1
  - Added new Trie interface together with an implementation of a Patricia Trie
 
 
+Changes since 4.0-alpha1
+------------------------
+
+ - renamed CompliantBag to CollectionBag
+
+
 Removed classes
 ---------------
 
@@ -64,7 +78,7 @@ Removed classes
 New classes
 -----------
 
- o [COLLECTIONS-468] CompliantBag - decorates another Bag to make it comply with the Collection contract.
+ o [COLLECTIONS-468] CollectionBag - decorates another Bag to make it comply with the Collection contract.
  o [COLLECTIONS-463] PushbackIterator - supports pushback of elements during iteration. Thanks to Andy Seaborne, Claude Warren.
  o [COLLECTIONS-462] PeekingIterator - supports one-element lookahead during iteration. Thanks to Andy Seaborne, Claude Warren.
  o [COLLECTIONS-432] CircularFifoQueue - analogous class to CircularFifoBuffer for the Queue interface

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=1500115&r1=1500114&r2=1500115&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 Fri Jul  5 20:10:16 2013
@@ -95,7 +95,7 @@ This release is <b>not</b> source or bin
 
 <center><h3>New Classes</h3></center>
 <ul>
-<li>CompliantBag - decorates another Bag to make it comply with the Collection contract.</li>
+<li>CollectionBag - decorates another Bag to make it comply with the Collection contract.</li>
 <li>PushbackIterator - supports pushback of elements during iteration. Thanks to Andy Seaborne, Claude Warren.</li>
 <li>PeekingIterator - supports one-element lookahead during iteration. Thanks to Andy Seaborne, Claude Warren.</li>
 <li>CircularFifoQueue - analogous class to CircularFifoBuffer for the Queue interface</li>