Skip to content

Commit

Permalink
Bump version number to 1.0b8
Browse files Browse the repository at this point in the history
  • Loading branch information
aled committed Feb 27, 2011
1 parent 8205ba3 commit 4f0b853
Show file tree
Hide file tree
Showing 24 changed files with 35 additions and 35 deletions.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<project name="jsi" default="all" basedir=".">

<!-- version number -->
<property name="version" value="1.0b6"/>
<property name="version" value="1.0b8"/>

<!-- library includes -->
<property name="lib.dir" value="${basedir}/jsi/lib"/>
Expand Down
2 changes: 1 addition & 1 deletion jsi/bin/log4j.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

# author aled.morris@infomatiq.co.uk
# version 1.0b6
# version 1.0b8

log4j.rootLogger=ERROR, A1
log4j.logger.com.infomatiq.jsi.test.SpatialIndexTest=INFO
Expand Down
2 changes: 1 addition & 1 deletion jsi/doc/BUILD.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ To build the JSI library from source, install Ant and run the following:
% cd <location-of-build.xml>
% ant all

This will generate two jar files; jsi/jar/jsi-1.0b6.jar and jsi/jar/jsi-test-1.0b6.jar.
This will generate two jar files; jsi/jar/jsi-1.0b8.jar and jsi/jar/jsi-test-1.0b8.jar.
The second is only required for running tests, and is not needed for production use.


Expand Down
16 changes: 8 additions & 8 deletions jsi/doc/README.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
This release contains the following directories/files:

jsi-1.0b6/jsi/src - source code to the JSI library. Test code is in
jsi-1.0b8/jsi/src - source code to the JSI library. Test code is in
the com.infomatiq.jsi.test package.
jsi-1.0b6/jsi/bin - compiled version of jsi/src
jsi-1.0b6/jsi/lib - the log4j-1.2.6 and trove-2.02 libraries are
jsi-1.0b8/jsi/bin - compiled version of jsi/src
jsi-1.0b8/jsi/lib - the log4j-1.2.6 and trove-2.02 libraries are
required by the JSI library. The junit-3.7.0 and
sil-0.44.2b libraries are only required by the
test code.
jsi-1.0b6/jsi/tests - test scripts
jsi-1.0b6/jsi/test-results - test results will be placed here
jsi-1.0b6/jsi/doc - documentation
jsi-1.0b6/jsi/doc/javadoc - javadoc documentation
jsi-1.0b6/jsi/build.xml - ANT build script. See BUILD.txt.
jsi-1.0b8/jsi/tests - test scripts
jsi-1.0b8/jsi/test-results - test results will be placed here
jsi-1.0b8/jsi/doc - documentation
jsi-1.0b8/jsi/doc/javadoc - javadoc documentation
jsi-1.0b8/jsi/build.xml - ANT build script. See BUILD.txt.
2 changes: 1 addition & 1 deletion jsi/doc/TEST.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Note this will take a very long time to run:
1. Make sure the java executable is in the path.
2. Extract the zip file into a directory of your choice, eg /home/fred
3. 'cd' into the 'jsi' directory created in the previous step;
eg /home/fred/jsi-1.0b6/jsi
eg /home/fred/jsi-1.0b8/jsi
4. Generate reference test results
[Linux]
java -classpath bin:lib/log4j-1.2.6.jar:lib/junit-3.7.0.jar:lib/trove-2.0.2.jar:lib/sil-0.44.2b.jar junit.textui.TestRunner com.infomatiq.jsi.test.ReferenceGenerateTest
Expand Down
2 changes: 1 addition & 1 deletion jsi/src/com/infomatiq/jsi/Point.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* Currently hardcoded to 2 dimensions, but could be extended.
*
* @author aled@sourceforge.net
* @version 1.0b6
* @version 1.0b8
*/
public class Point {
/**
Expand Down
2 changes: 1 addition & 1 deletion jsi/src/com/infomatiq/jsi/PriorityQueue.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
* isn't the right data structure.
* </p>
* @author Aled Morris <aled@sourceforge.net>
* @version 1.0b6
* @version 1.0b8
*/
public class PriorityQueue {
public static final boolean SORT_ORDER_ASCENDING = true;
Expand Down
2 changes: 1 addition & 1 deletion jsi/src/com/infomatiq/jsi/Rectangle.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* Currently hardcoded to 2 dimensions, but could be extended.
*
* @author aled@sourceforge.net
* @version 1.0b6
* @version 1.0b8
*/
public class Rectangle {

Expand Down
2 changes: 1 addition & 1 deletion jsi/src/com/infomatiq/jsi/SpatialIndex.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* spatial indexes. This includes the RTree and its variants.
*
* @author aled@sourceforge.net
* @version 1.0b6
* @version 1.0b8
*/
public interface SpatialIndex {

Expand Down
2 changes: 1 addition & 1 deletion jsi/src/com/infomatiq/jsi/rtree/Node.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* <p>Used by RTree. There are no public methods in this class.</p>
*
* @author aled.morris@infomatiq.co.uk
* @version 1.0b6
* @version 1.0b8
*/
public class Node {
int nodeId = 0;
Expand Down
2 changes: 1 addition & 1 deletion jsi/src/com/infomatiq/jsi/rtree/SortedList.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
* </p>
*
* @author aled@sourceforge.net
* @version 1.0b6
* @version 1.0b8
*/
public class SortedList {
private static final int DEFAULT_PREFERRED_MAXIMUM_SIZE = 10;
Expand Down
2 changes: 1 addition & 1 deletion jsi/src/com/infomatiq/jsi/test/ListDecorator.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* ListDecorator
*
* @author aled@sourceforge.net
* @version 1.0b6
* @version 1.0b8
*/
public class ListDecorator {
SpatialIndex m_si = null;
Expand Down
4 changes: 2 additions & 2 deletions jsi/src/com/infomatiq/jsi/test/NullIndex.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
* testing framework.
*
* @author aled@sourceforge.net
* @version 1.0b6
* @version 1.0b8
*/
public class NullIndex implements SpatialIndex {
private static final String version = "1.0b6";
private static final String version = "1.0b8";

/**
* @see com.infomatiq.jsi.SpatialIndex#init(Properties)
Expand Down
2 changes: 1 addition & 1 deletion jsi/src/com/infomatiq/jsi/test/PerformanceTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* Index library against alternative implementations.
*
* @author aled@sourceforge.net
* @version 1.0b6
* @version 1.0b8
*/
public class PerformanceTest extends SpatialIndexTest {

Expand Down
4 changes: 2 additions & 2 deletions jsi/src/com/infomatiq/jsi/test/RTreeWrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@
* can be made.
*
* @author aled@sourceforge.net
* @version 1.0b6
* @version 1.0b8
*/
public class RTreeWrapper implements SpatialIndex {
private static final String version = "1.0b6";
private static final String version = "1.0b8";

private RTree tree;

Expand Down
2 changes: 1 addition & 1 deletion jsi/src/com/infomatiq/jsi/test/RectangleTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* RectangleTest
*
* @author aled@sourceforge.net
* @version 1.0b6
* @version 1.0b8
*/
public class RectangleTest extends TestCase {
public RectangleTest(String s) {
Expand Down
2 changes: 1 addition & 1 deletion jsi/src/com/infomatiq/jsi/test/ReferenceCompareTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* Index library against alternative implementations.
*
* @author aled@sourceforge.net
* @version 1.0b6
* @version 1.0b8
*/
public class ReferenceCompareTest extends SpatialIndexTest {

Expand Down
2 changes: 1 addition & 1 deletion jsi/src/com/infomatiq/jsi/test/ReferenceGenerateTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* implementations, specifically SimpleIndex and Spatial Index Library.
*
* @author aled@sourceforge.net
* @version 1.0b6
* @version 1.0b8
*/
public class ReferenceGenerateTest extends SpatialIndexTest {

Expand Down
4 changes: 2 additions & 2 deletions jsi/src/com/infomatiq/jsi/test/SILWrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@
* Used to generate test results and performance comparisons.
*
* @author aled@sourceforge.net
* @version 1.0b6
* @version 1.0b8
*/
public class SILWrapper implements SpatialIndex {

private static final Logger log =
Logger.getLogger(SILWrapper.class.getName());

private static final String version = "1.0b6";
private static final String version = "1.0b8";

private IStorageManager storageManager = null;
private ISpatialIndex tree = null;
Expand Down
4 changes: 2 additions & 2 deletions jsi/src/com/infomatiq/jsi/test/SimpleIndex.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@
* <p>On the other hand, the add() and delete() methods are very fast :-)</p>
*
* @author aled@sourceforge.net
* @version 1.0b6
* @version 1.0b8
*/
public class SimpleIndex implements SpatialIndex {
TIntObjectHashMap m_map = new TIntObjectHashMap();
private static final String version = "1.0b6";
private static final String version = "1.0b8";

/**
* Does nothing. There are no implementation dependent properties for
Expand Down
2 changes: 1 addition & 1 deletion jsi/src/com/infomatiq/jsi/test/SortedListDecorator.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* SortedListDecorator
*
* @author aled@sourceforge.net
* @version 1.0b6
* @version 1.0b8
*/
public class SortedListDecorator extends ListDecorator {

Expand Down
2 changes: 1 addition & 1 deletion jsi/src/com/infomatiq/jsi/test/SpatialIndexFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* Factory class used to create instances of spatial indexes
*
* @author aled@sourceforge.net
* @version 1.0b6
* @version 1.0b8
*/
public class SpatialIndexFactory {

Expand Down
2 changes: 1 addition & 1 deletion jsi/src/com/infomatiq/jsi/test/SpatialIndexTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
* SpatialIndexTest
*
* @author aled@sourceforge.net
* @version 1.0b6
* @version 1.0b8
*/
public class SpatialIndexTest extends TestCase {

Expand Down
2 changes: 1 addition & 1 deletion jsi/src/log4j.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

# author aled.morris@infomatiq.co.uk
# version 1.0b6
# version 1.0b8

log4j.rootLogger=ERROR, A1
log4j.logger.com.infomatiq.jsi.test.SpatialIndexTest=INFO
Expand Down

0 comments on commit 4f0b853

Please sign in to comment.