Skip to content

Commit d693b62

Browse files
committed
Release 1.6.0
1 parent 9e4810e commit d693b62

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
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.5.0</version>
126+
<version>1.6.0</version>
127127
</dependency>
128128

129129
Versions
@@ -132,7 +132,7 @@ Versions
132132
+-----------+----------+-----------+------+---------+
133133
| GeoScript | GeoTools | GeoServer | JTS | Groovy |
134134
+-----------+----------+-----------+------+---------+
135-
| 1.6 | 14 | 2.8 | 1.13 | 2.4 |
135+
| 1.6 | 14 | 2.8 | 1.13 | 2.4.5 |
136136
+-----------+----------+-----------+------+---------+
137137
| 1.5 | 13 | 2.7 | 1.13 | 2.3.10 |
138138
+-----------+----------+-----------+------+---------+

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.4.0 <https://github.com/jericks/geoscript-groovy/releases>`_ is the current stable version.
9+
`GeoScript Groovy 1.6.0 <https://github.com/jericks/geoscript-groovy/releases>`_ is the current stable version.
1010

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

doc/quickstart.rst

Lines changed: 8 additions & 8 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.5*, 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.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::
1010

1111
% java -version
12-
java version "1.5.0_20"
12+
java version "1.7.0"
1313
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_20-b02-315)
14-
Java HotSpot(TM) Client VM (build 1.5.0_20-141, mixed mode, sharing)
14+
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.5 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.6 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 greater than *1.7* is required for GeoScript. The current version can be downloaded from http://groovy.codehaus.org/.
27+
Groovy version *2.4.5* is required for GeoScript. The current version can be downloaded from http://groovy.codehaus.org/.
2828

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

3434
#. Unpack the GeoScript tarball::
3535

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

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

40-
export PATH=geoscript-groovy-1.4.0\bin:$PATH
40+
export PATH=geoscript-groovy-1.6.0\bin:$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

doc/releases.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
GeoScript Groovy Releases
44
=========================
55

6-
1.6.0 (in progress)
7-
-------------------
6+
1.6.0
7+
-----
88

99
The 1.6.0 release of GeoScript is build on Groovy 2.4.4, GeoTools 14.0, and the Java Topology Suite 1.13.
1010

pom.xml

Lines changed: 3 additions & 3 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.6-SNAPSHOT</version>
8+
<version>1.6.0</version>
99
<repositories>
1010
<repository>
1111
<id>boundless</id>
@@ -280,7 +280,7 @@
280280
<dependency>
281281
<groupId>org.codehaus.groovy</groupId>
282282
<artifactId>groovy-all</artifactId>
283-
<version>2.4.4</version>
283+
<version>2.4.5</version>
284284
</dependency>
285285
<dependency>
286286
<groupId>net.sf.opencsv</groupId>
@@ -443,7 +443,7 @@
443443
</plugins>
444444
</reporting>
445445
<properties>
446-
<gt.version>14-SNAPSHOT</gt.version>
446+
<gt.version>14.0</gt.version>
447447
</properties>
448448
<name>geoscript groovy</name>
449449
<description>A groovy implementation of geoscript.</description>

0 commit comments

Comments
 (0)