Skip to content

Commit

Permalink
Release 1.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jericks committed Mar 2, 2019
1 parent 0ee756d commit 0d697b6
Show file tree
Hide file tree
Showing 9 changed files with 39 additions and 21 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ and then include the GeoScript Groovy dependency::
<dependency>
<groupId>org.geoscript</groupId>
<artifactId>geoscript-groovy</artifactId>
<version>1.12.0</version>
<version>1.13.0</version>
</dependency>

Versions
Expand Down Expand Up @@ -167,7 +167,7 @@ Versions
API Groovy Docs
---------------

`1.13-SNAPSHOT <http://geoscript.github.io/geoscript-groovy/api/1.13-SNAPSHOT/index.html>`_
`1.13.0 <http://geoscript.github.io/geoscript-groovy/api/1.13.0/index.html>`_

`1.12.0 <http://geoscript.github.io/geoscript-groovy/api/1.12.0/index.html>`_

Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@
# built documents.
#
# The short X.Y version.
version = '1.4.0'
version = '1.13.0'
# The full version, including alpha/beta/rc tags.
release = '1.4.0'
release = '1.13.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
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.11.0 <https://github.com/jericks/geoscript-groovy/releases>`_ is the current stable version.
`GeoScript Groovy 1.13.0 <https://github.com/jericks/geoscript-groovy/releases>`_ is the current stable version.

Experimental
------------
Expand Down
3 changes: 1 addition & 2 deletions doc/gradle.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ Then edit the build.gradle file.
}
dependencies {
compile "org.codehaus.groovy:groovy-all:2.4.14"
compile "org.geoscript:geoscript-groovy:1.12.0"
compile "org.geoscript:geoscript-groovy:1.13.0"
}
task wrapper(type: Wrapper) {
Expand Down
2 changes: 1 addition & 1 deletion doc/mavenapp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Add geoscript as a dependency in pom.xml.
<dependency>
<groupId>org.geoscript</groupId>
<artifactId>geoscript-groovy</artifactId>
<version>1.4.0</version>
<version>1.13.0</version>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion doc/mavenwebappjndi.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Add geoscript as a dependency in the **pom.xml** file:
<dependency>
<groupId>org.geoscript</groupId>
<artifactId>geoscript-groovy</artifactId>
<version>1.12.0</version>
<version>1.13.0</version>
</dependency>
<depenencies>
Expand Down
12 changes: 6 additions & 6 deletions doc/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ Install Java
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::

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

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

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

Groovy version *2.4.6* is required for GeoScript. The current version can be downloaded from http://groovy.codehaus.org/.
Groovy version *2.5.6* is required for GeoScript. The current version can be downloaded from http://groovy.codehaus.org/.

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

#. Unpack the GeoScript tarball::

unzip geoscript-groovy-1.12.0.zip
unzip geoscript-groovy-1.13.0.zip

#. Add the geoscript-groovy-1.12.0/bin directory to your path::
#. Add the geoscript-groovy-1.13.0/bin directory to your path::

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

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

% geoscript-groovysh
Groovy Shell (1.12.0, JVM: 1.8.0_17)
Groovy Shell (1.13.0, JVM: 1.8.0_17)
Type 'help' or '\h' for help.
-----------------------------------------------------------------------------------------------
groovy:000> import geoscript.geom.Point
Expand Down
25 changes: 22 additions & 3 deletions doc/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,28 @@
GeoScript Groovy Releases
=========================

1.13.0 (Under development)
--------------------------
The 1.13 release of GeoScript is built on Groovy 2.4.15, GeoTools 21.0, and the Java Topologu Suite 1.16.0 and requires Java 8.
1.13.0
------
The 1.13 release of GeoScript is built on Groovy 2.5.6, GeoTools 21.0, and the Java Topology Suite 1.16.0 and requires Java 8.

Added a Raster mosaic method::

Raster mosaicedRaster = Raster.mosaic([raster1, raster2, raster3])

Add metatile support to the Tile generator::

TMS tms = new TMS("world", "png", dir, pyramid)
TileRenderer renderer = new ImageTileRenderer(tms, [ocean, countries])
TileGenerator generator = new TileGenerator(verbose: true)
generator.generate(tms, renderer, 0, 4, metatile: [width:4, height: 4])

Updates due to GeoTools Java 11 refactoring.

Fixed Raster getValueAsString method.

Fixed all usages of Filter.intersects to include geometry name

Improved CSV reading when semi-colon is a part of the name.

1.12.0
------
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.13-SNAPSHOT</version>
<version>1.13.0</version>
<repositories>
<repository>
<id>boundless</id>
Expand Down Expand Up @@ -103,7 +103,7 @@
<dependency>
<groupId>org.geotools.jdbc</groupId>
<artifactId>gt-jdbc-spatialite</artifactId>
<version>${gt.version}</version>
<version>20.0</version>
</dependency>
<dependency>
<groupId>org.geotools.xsd</groupId>
Expand Down Expand Up @@ -529,7 +529,7 @@
</plugins>
</reporting>
<properties>
<gt.version>21-SNAPSHOT</gt.version>
<gt.version>21.0</gt.version>
</properties>
<name>geoscript groovy</name>
<description>A groovy implementation of geoscript.</description>
Expand Down

0 comments on commit 0d697b6

Please sign in to comment.