Author: tn
Date: Sun May 12 18:43:06 2013
New Revision: 1481621
URL: http://svn.apache.org/r1481621
Log:
[COLLECTIONS-466] Added entry to release notes.
Modified:
commons/proper/collections/trunk/RELEASE-NOTES.txt
commons/proper/collections/trunk/src/changes/changes.xml
Modified: commons/proper/collections/trunk/RELEASE-NOTES.txt
URL:
http://svn.apache.org/viewvc/commons/proper/collections/trunk/RELEASE-NOTES.txt?rev=1481621&r1=1481620&r2=1481621&view=diff
==============================================================================
--- commons/proper/collections/trunk/RELEASE-NOTES.txt (original)
+++ commons/proper/collections/trunk/RELEASE-NOTES.txt Sun May 12 18:43:06 2013
@@ -28,7 +28,7 @@ have changed.
Major changes since 3.2.1
-------------------------
- - Use of generics for the API
+ - Use of generics and other language features introduced in Java 5 (varargs,
Iterable)
- Removed deprecated classes / methods and features which are now supported
by the JDK
- Replaced Buffer interface with java.util.Queue
@@ -125,6 +125,7 @@ New features
Changed classes / methods
-------------------------
+ o [COLLECTIONS-466] Replaced "Collection" with "Iterable" for method
arguments where applicable.
o [COLLECTIONS-454] An iterator over a "Flat3Map#entrySet()" will now return
independent Map.Entry objects that will
not change anymore when the iterator progresses.
o [COLLECTIONS-453] Several closure and transformer implementations in the
functor package will now copy
Modified: commons/proper/collections/trunk/src/changes/changes.xml
URL:
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/changes/changes.xml?rev=1481621&r1=1481620&r2=1481621&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/changes/changes.xml (original)
+++ commons/proper/collections/trunk/src/changes/changes.xml Sun May 12
18:43:06 2013
@@ -22,6 +22,9 @@
<body>
<release version="4.0" date="TBA" description="Next release">
+ <action issue="COLLECTIONS-466" dev="tn" type="update">
+ Replaced "Collection" with "Iterable" for method arguments where
applicable.
+ </action>
<action issue="COLLECTIONS-463" dev="tn" type="add" due-to="Andy Seaborne,
Claude Warren">
Added "PushbackIterator" decorator to support pushback of elements
during iteration.
</action>