Skip to content

Commit

Permalink
Release 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jericks committed Oct 3, 2015
1 parent 9e4810e commit d693b62
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ and then include the GeoScript Groovy dependency::
<dependency>
<groupId>org.geoscript</groupId>
<artifactId>geoscript-groovy</artifactId>
<version>1.5.0</version>
<version>1.6.0</version>
</dependency>

Versions
Expand All @@ -132,7 +132,7 @@ Versions
+-----------+----------+-----------+------+---------+
| GeoScript | GeoTools | GeoServer | JTS | Groovy |
+-----------+----------+-----------+------+---------+
| 1.6 | 14 | 2.8 | 1.13 | 2.4 |
| 1.6 | 14 | 2.8 | 1.13 | 2.4.5 |
+-----------+----------+-----------+------+---------+
| 1.5 | 13 | 2.7 | 1.13 | 2.3.10 |
+-----------+----------+-----------+------+---------+
Expand Down
2 changes: 1 addition & 1 deletion doc/download.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Downloads
Stable
------

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

Experimental
------------
Expand Down
16 changes: 8 additions & 8 deletions doc/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ Quick Start
Install Java
------------

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::
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::

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

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>`.
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>`.

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

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

Groovy version greater than *1.7* is required for GeoScript. The current version can be downloaded from http://groovy.codehaus.org/.
Groovy version *2.4.5* is required for GeoScript. The current version can be downloaded from http://groovy.codehaus.org/.

Install GeoScript
-----------------
Expand All @@ -33,11 +33,11 @@ Install GeoScript

#. Unpack the GeoScript tarball::

unzip geoscript-groovy-1.4.0.zip
unzip geoscript-groovy-1.6.0.zip

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

export PATH=geoscript-groovy-1.4.0\bin:$PATH
export PATH=geoscript-groovy-1.6.0\bin:$PATH

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

Expand Down
4 changes: 2 additions & 2 deletions doc/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
GeoScript Groovy Releases
=========================

1.6.0 (in progress)
-------------------
1.6.0
-----

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

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>org.geoscript</groupId>
<artifactId>geoscript-groovy</artifactId>
<packaging>jar</packaging>
<version>1.6-SNAPSHOT</version>
<version>1.6.0</version>
<repositories>
<repository>
<id>boundless</id>
Expand Down Expand Up @@ -280,7 +280,7 @@
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.4.4</version>
<version>2.4.5</version>
</dependency>
<dependency>
<groupId>net.sf.opencsv</groupId>
Expand Down Expand Up @@ -443,7 +443,7 @@
</plugins>
</reporting>
<properties>
<gt.version>14-SNAPSHOT</gt.version>
<gt.version>14.0</gt.version>
</properties>
<name>geoscript groovy</name>
<description>A groovy implementation of geoscript.</description>
Expand Down

0 comments on commit d693b62

Please sign in to comment.