Skip to content

Commit 0d697b6

Browse files
committed
Release 1.13.0
1 parent 0ee756d commit 0d697b6

9 files changed

+39
-21
lines changed

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ and then include the GeoScript Groovy dependency::
126126
<dependency>
127127
<groupId>org.geoscript</groupId>
128128
<artifactId>geoscript-groovy</artifactId>
129-
<version>1.12.0</version>
129+
<version>1.13.0</version>
130130
</dependency>
131131

132132
Versions
@@ -167,7 +167,7 @@ Versions
167167
API Groovy Docs
168168
---------------
169169

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

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

doc/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545
# built documents.
4646
#
4747
# The short X.Y version.
48-
version = '1.4.0'
48+
version = '1.13.0'
4949
# The full version, including alpha/beta/rc tags.
50-
release = '1.4.0'
50+
release = '1.13.0'
5151

5252
# The language for content autogenerated by Sphinx. Refer to documentation
5353
# for a list of supported languages.

doc/download.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Downloads
66
Stable
77
------
88

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

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

doc/gradle.rst

+1-2
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,7 @@ Then edit the build.gradle file.
5151
}
5252
5353
dependencies {
54-
compile "org.codehaus.groovy:groovy-all:2.4.14"
55-
compile "org.geoscript:geoscript-groovy:1.12.0"
54+
compile "org.geoscript:geoscript-groovy:1.13.0"
5655
}
5756
5857
task wrapper(type: Wrapper) {

doc/mavenapp.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Add geoscript as a dependency in pom.xml.
3131
<dependency>
3232
<groupId>org.geoscript</groupId>
3333
<artifactId>geoscript-groovy</artifactId>
34-
<version>1.4.0</version>
34+
<version>1.13.0</version>
3535
</dependency>
3636
</dependencies>
3737

doc/mavenwebappjndi.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Add geoscript as a dependency in the **pom.xml** file:
4242
<dependency>
4343
<groupId>org.geoscript</groupId>
4444
<artifactId>geoscript-groovy</artifactId>
45-
<version>1.12.0</version>
45+
<version>1.13.0</version>
4646
</dependency>
4747
<depenencies>
4848

doc/quickstart.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ Install Java
99
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
12-
java version "1.7.0"
12+
java version "1.8.0"
1313
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_20-b02-315)
14-
Java HotSpot(TM) Client VM (build 1.7, mixed mode, sharing)
14+
Java HotSpot(TM) Client VM (build 1.8, mixed mode, sharing)
1515

1616
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

@@ -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.6* is required for GeoScript. The current version can be downloaded from http://groovy.codehaus.org/.
27+
Groovy version *2.5.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.12.0.zip
36+
unzip geoscript-groovy-1.13.0.zip
3737

38-
#. Add the geoscript-groovy-1.12.0/bin directory to your path::
38+
#. Add the geoscript-groovy-1.13.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.12.0, JVM: 1.8.0_17)
45+
Groovy Shell (1.13.0, JVM: 1.8.0_17)
4646
Type 'help' or '\h' for help.
4747
-----------------------------------------------------------------------------------------------
4848
groovy:000> import geoscript.geom.Point

doc/releases.rst

+22-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,28 @@
33
GeoScript Groovy Releases
44
=========================
55

6-
1.13.0 (Under development)
7-
--------------------------
8-
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.
6+
1.13.0
7+
------
8+
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.
9+
10+
Added a Raster mosaic method::
11+
12+
Raster mosaicedRaster = Raster.mosaic([raster1, raster2, raster3])
13+
14+
Add metatile support to the Tile generator::
15+
16+
TMS tms = new TMS("world", "png", dir, pyramid)
17+
TileRenderer renderer = new ImageTileRenderer(tms, [ocean, countries])
18+
TileGenerator generator = new TileGenerator(verbose: true)
19+
generator.generate(tms, renderer, 0, 4, metatile: [width:4, height: 4])
20+
21+
Updates due to GeoTools Java 11 refactoring.
22+
23+
Fixed Raster getValueAsString method.
24+
25+
Fixed all usages of Filter.intersects to include geometry name
26+
27+
Improved CSV reading when semi-colon is a part of the name.
928

1029
1.12.0
1130
------

pom.xml

+3-3
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.13-SNAPSHOT</version>
8+
<version>1.13.0</version>
99
<repositories>
1010
<repository>
1111
<id>boundless</id>
@@ -103,7 +103,7 @@
103103
<dependency>
104104
<groupId>org.geotools.jdbc</groupId>
105105
<artifactId>gt-jdbc-spatialite</artifactId>
106-
<version>${gt.version}</version>
106+
<version>20.0</version>
107107
</dependency>
108108
<dependency>
109109
<groupId>org.geotools.xsd</groupId>
@@ -529,7 +529,7 @@
529529
</plugins>
530530
</reporting>
531531
<properties>
532-
<gt.version>21-SNAPSHOT</gt.version>
532+
<gt.version>21.0</gt.version>
533533
</properties>
534534
<name>geoscript groovy</name>
535535
<description>A groovy implementation of geoscript.</description>

0 commit comments

Comments
 (0)