diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index e6db9abff..e76c681be 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -64,6 +64,7 @@ Removed classes New classes ----------- + o [COLLECTIONS-468] CompliantBag - 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 diff --git a/src/changes/changes.xml b/src/changes/changes.xml index 235309081..7385666e9 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -29,6 +29,10 @@ Renamed class "TransformedMap" in package "splitmap" to "TransformedSplitMap" to avoid name clash with similar class in package "map". + + + Added bag decorator "CompliantBag" which decorates a bag to make it comply with the + Collection contract. Replaced "Collection" with "Iterable" for method arguments where applicable.