[COLLECTIONS-466] Added entry to release notes.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1481621 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2013-05-12 18:43:06 +00:00
parent a86de44927
commit d9ed7afd9e
2 changed files with 5 additions and 1 deletions

View File

@ -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

View File

@ -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>