Skip to content

Commit 5690772

Browse files
committed
Release version 1.7.0
1 parent 65d5761 commit 5690772

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

README.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ and then include the GeoScript Groovy dependency::
123123
<dependency>
124124
<groupId>org.geoscript</groupId>
125125
<artifactId>geoscript-groovy</artifactId>
126-
<version>1.6.0</version>
126+
<version>1.7.0</version>
127127
</dependency>
128128

129129
Versions
@@ -132,6 +132,8 @@ Versions
132132
+-----------+----------+-----------+------+---------+
133133
| GeoScript | GeoTools | GeoServer | JTS | Groovy |
134134
+-----------+----------+-----------+------+---------+
135+
| 1.7 | 17 | 2.9 | 1.13 | 2.4.6 |
136+
+-----------+----------+-----------+------+---------+
135137
| 1.6 | 14 | 2.8 | 1.13 | 2.4.5 |
136138
+-----------+----------+-----------+------+---------+
137139
| 1.5 | 13 | 2.7 | 1.13 | 2.3.10 |

doc/download.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Downloads
66
Stable
77
------
88

9-
`GeoScript Groovy 1.6.0 <https://github.com/jericks/geoscript-groovy/releases>`_ is the current stable version.
9+
`GeoScript Groovy 1.7.0 <https://github.com/jericks/geoscript-groovy/releases>`_ is the current stable version.
1010

1111
Experimental
1212
------------

doc/quickstart.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ Quick Start
66
Install Java
77
------------
88

9-
A Java Runtime Environment (JRE), version greater than *1.7*, is required to run Groovy and GeoScript. Chances are your system already has a JRE installed on it. A quick way to test is to execute the following from the command line::
9+
A Java Runtime Environment (JRE), version greater than *1.8*, is required to run Groovy and GeoScript. Chances are your system already has a JRE installed on it. A quick way to test is to execute the following from the command line::
1010

1111
% java -version
1212
java version "1.7.0"
1313
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_20-b02-315)
1414
Java HotSpot(TM) Client VM (build 1.7, mixed mode, sharing)
1515

16-
If the command is not found or the Java version is less than 1.6 you must install a new JRE. Otherwise you can continue to the :ref:`next step <install_groovy>`.
16+
If the command is not found or the Java version is less than 1.8 you must install a new JRE. Otherwise you can continue to the :ref:`next step <install_groovy>`.
1717

1818
A JRE can be downloaded from `Sun Microsystems <http://java.sun.com/javase/downloads/index.jsp>`_.
1919

@@ -24,7 +24,7 @@ A JRE can be downloaded from `Sun Microsystems <http://java.sun.com/javase/downl
2424
Install Groovy
2525
--------------
2626

27-
Groovy version *2.4.5* is required for GeoScript. The current version can be downloaded from http://groovy.codehaus.org/.
27+
Groovy version *2.4.6* is required for GeoScript. The current version can be downloaded from http://groovy.codehaus.org/.
2828

2929
Install GeoScript
3030
-----------------
@@ -33,16 +33,16 @@ Install GeoScript
3333

3434
#. Unpack the GeoScript tarball::
3535

36-
unzip geoscript-groovy-1.6.0.zip
36+
unzip geoscript-groovy-1.7.0.zip
3737

38-
#. Add the geoscript-groovy-1.6.0/bin directory to your path::
38+
#. Add the geoscript-groovy-1.7.0/bin directory to your path::
3939

4040
export PATH=$(cd bin; pwd):$PATH
4141

4242
That's it. GeoScript Groovy should now be installed on the system. To verify the install execute the :command:`geoscript-groovysh` command::
4343

4444
% geoscript-groovysh
45-
Groovy Shell (1.7.0, JVM: 1.6.0_17)
45+
Groovy Shell (1.7.0, JVM: 1.8.0_17)
4646
Type 'help' or '\h' for help.
4747
-----------------------------------------------------------------------------------------------
4848
groovy:000> import geoscript.geom.Point

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>org.geoscript</groupId>
66
<artifactId>geoscript-groovy</artifactId>
77
<packaging>jar</packaging>
8-
<version>1.7-SNAPSHOT</version>
8+
<version>1.7.0</version>
99
<repositories>
1010
<repository>
1111
<id>boundless</id>
@@ -451,7 +451,7 @@
451451
</plugins>
452452
</reporting>
453453
<properties>
454-
<gt.version>15-SNAPSHOT</gt.version>
454+
<gt.version>15.0</gt.version>
455455
</properties>
456456
<name>geoscript groovy</name>
457457
<description>A groovy implementation of geoscript.</description>

0 commit comments

Comments
 (0)