Update release information, the next will be 4.1 rather than 4.0.1.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1573751 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2014-03-03 21:15:08 +00:00
parent 649f160522
commit b68202aa29
5 changed files with 8 additions and 8 deletions

View File

@ -21,7 +21,7 @@
</properties>
<body>
<release version="4.0.1" date="TBD" description="">
<release version="4.1" date="TBD" description="">
<action issue="COLLECTIONS-507" dev="tn" type="fix" due-to="Gerson">
Removed wrong type bounds for "ComparatorUtils#chainedComparator(...)".
</action>

View File

@ -444,7 +444,7 @@ public class IteratorUtils {
* @param max the maximum number of elements returned by this iterator
* @return a new bounded iterator
* @throws IllegalArgumentException if the iterator is null or either offset or max is negative
* @since 4.0.1
* @since 4.1
*/
public static <E> BoundedIterator<E> boundedIterator(final Iterator<? extends E> iterator, long max) {
return BoundedIterator.boundedIterator(iterator, max);
@ -464,7 +464,7 @@ public class IteratorUtils {
* @param max the maximum number of elements returned by this iterator
* @return a new bounded iterator
* @throws IllegalArgumentException if the iterator is null or either offset or max is negative
* @since 4.0.1
* @since 4.1
*/
public static <E> BoundedIterator<E> boundedIterator(final Iterator<? extends E> iterator,
long offset, long max) {

View File

@ -222,7 +222,7 @@ public class TransformerUtils {
* @return the transformer
* @throws IllegalArgumentException if either the predicate or transformer is null
* @see org.apache.commons.collections4.functors.IfTransformer
* @since 4.0.1
* @since 4.1
*/
public static <T> Transformer<T, T> ifTransformer(final Predicate<? super T> predicate,
final Transformer<? super T, ? extends T> trueTransformer) {
@ -241,7 +241,7 @@ public class TransformerUtils {
* @return the transformer
* @throws IllegalArgumentException if either the predicate or transformer is null
* @see org.apache.commons.collections4.functors.IfTransformer
* @since 4.0.1
* @since 4.1
*/
public static <I, O> Transformer<I, O> ifTransformer(final Predicate<? super I> predicate,
final Transformer<? super I, ? extends O> trueTransformer,
@ -261,7 +261,7 @@ public class TransformerUtils {
* @return the transformer
* @throws IllegalArgumentException if either the predicate or transformer is null
* @see org.apache.commons.collections4.functors.SwitchTransformer
* @deprecated as of 4.0.1, use {@link #ifTransformer(Predicate, Transformer, Transformer))
* @deprecated as of 4.1, use {@link #ifTransformer(Predicate, Transformer, Transformer))
*/
@SuppressWarnings("unchecked")
@Deprecated

View File

@ -28,7 +28,7 @@ import java.io.Serializable;
* @param <I> The input type for the transformer
* @param <O> The output type for the transformer
*
* @since 4.0.1
* @since 4.1
* @version $Id$
*/
public class IfTransformer<I, O> implements Transformer<I, O>, Serializable {

View File

@ -28,7 +28,7 @@ import java.util.NoSuchElementException;
* iterator is immediately advanced to this position, skipping all elements
* before that position.
*
* @since 4.0.1
* @since 4.1
* @version $Id$
*/
public class BoundedIterator<E> implements Iterator<E> {