Update version numbers for next release
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131249 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f05bc240ac
commit
396286ea1e
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/comparators/BooleanComparator.java,v 1.7 2003/08/31 17:25:49 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/comparators/BooleanComparator.java,v 1.8 2003/10/05 23:21:07 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
|
@ -68,8 +68,7 @@ import java.util.Comparator;
|
|||
* @see #getBooleanComparator
|
||||
*
|
||||
* @since Commons Collections 3.0
|
||||
*
|
||||
* @version $Revision: 1.7 $ $Date: 2003/08/31 17:25:49 $
|
||||
* @version $Revision: 1.8 $ $Date: 2003/10/05 23:21:07 $
|
||||
*
|
||||
* @author Rodney Waldhoff
|
||||
*/
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/iterators/ArrayListIterator.java,v 1.6 2003/09/29 22:37:40 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/iterators/ArrayListIterator.java,v 1.7 2003/10/05 23:21:07 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
|
@ -76,10 +76,10 @@ import java.util.NoSuchElementException;
|
|||
* @see java.util.Iterator
|
||||
* @see java.util.ListIterator
|
||||
*
|
||||
* @since Commons Collections 2.2
|
||||
* @version $Revision: 1.6 $ $Date: 2003/09/29 22:37:40 $
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.7 $ $Date: 2003/10/05 23:21:07 $
|
||||
*
|
||||
* @author <a href="mailto:neilotoole@users.sourceforge.net">Neil O'Toole</a>
|
||||
* @author Neil O'Toole
|
||||
* @author Stephen Colebourne
|
||||
* @author Phil Steitz
|
||||
*/
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/TestCommonsLinkedList.java,v 1.5 2003/10/05 21:11:06 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/TestCommonsLinkedList.java,v 1.6 2003/10/05 23:21:07 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
|
@ -65,7 +65,7 @@ import junit.framework.Test;
|
|||
/**
|
||||
* Test case for {@link CommonsLinkedList}.
|
||||
*
|
||||
* @version $Revision: 1.5 $ $Date: 2003/10/05 21:11:06 $
|
||||
* @version $Revision: 1.6 $ $Date: 2003/10/05 23:21:07 $
|
||||
*
|
||||
* @author Rich Dougherty
|
||||
* @author David Hay
|
||||
|
@ -88,7 +88,7 @@ public class TestCommonsLinkedList extends TestLinkedList {
|
|||
}
|
||||
|
||||
public String getCompatibilityVersion() {
|
||||
return "2.2";
|
||||
return "3.0";
|
||||
}
|
||||
|
||||
public void setUp() {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/TestNodeCachingLinkedList.java,v 1.6 2003/10/05 21:23:21 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/TestNodeCachingLinkedList.java,v 1.7 2003/10/05 23:21:07 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
|
@ -65,7 +65,7 @@ import junit.framework.Test;
|
|||
/**
|
||||
* Test class for NodeCachingLinkedList, a performance optimised LinkedList.
|
||||
*
|
||||
* @version $Revision: 1.6 $ $Date: 2003/10/05 21:23:21 $
|
||||
* @version $Revision: 1.7 $ $Date: 2003/10/05 23:21:07 $
|
||||
*
|
||||
* @author Jeff Varszegi
|
||||
* @author Phil Steitz
|
||||
|
@ -89,7 +89,7 @@ public class TestNodeCachingLinkedList extends TestCommonsLinkedList {
|
|||
}
|
||||
|
||||
public String getCompatibilityVersion() {
|
||||
return "2.2";
|
||||
return "3.0";
|
||||
}
|
||||
|
||||
public void testShrinkCache() {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/comparators/TestBooleanComparator.java,v 1.4 2003/10/01 22:14:48 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/comparators/TestBooleanComparator.java,v 1.5 2003/10/05 23:21:07 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
|
@ -67,7 +67,7 @@ import junit.framework.TestSuite;
|
|||
/**
|
||||
* Tests for {@link BooleanComparator}.
|
||||
*
|
||||
* @version $Revision: 1.4 $ $Date: 2003/10/01 22:14:48 $
|
||||
* @version $Revision: 1.5 $ $Date: 2003/10/05 23:21:07 $
|
||||
*
|
||||
* @author Rodney Waldhoff
|
||||
*/
|
||||
|
@ -103,7 +103,7 @@ public class TestBooleanComparator extends AbstractTestComparator {
|
|||
}
|
||||
|
||||
public String getCompatibilityVersion() {
|
||||
return "2.2";
|
||||
return "3.0";
|
||||
}
|
||||
|
||||
// tests
|
||||
|
|
Loading…
Reference in New Issue