Skip to content

Commit 51d569a

Browse files
committed
Release 1.14.0
1 parent c9a12eb commit 51d569a

9 files changed

+35
-14
lines changed

README.rst

+3-3
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.13.0</version>
129+
<version>1.14.0</version>
130130
</dependency>
131131

132132
Versions
@@ -135,7 +135,7 @@ Versions
135135
+-----------+----------+-----------+--------+----------+
136136
| GeoScript | GeoTools | GeoServer | JTS | Groovy |
137137
+-----------+----------+-----------+--------+----------+
138-
| 1.14 | 22 | 2.16 | 1.16.0 | 2.5.8 |
138+
| 1.14 | 22 | 2.16 | 1.16.1 | 2.5.8 |
139139
+-----------+----------+-----------+--------+----------+
140140
| 1.13 | 21 | 2.15 | 1.16.0 | 2.5.6 |
141141
+-----------+----------+-----------+--------+----------+
@@ -169,7 +169,7 @@ Versions
169169
API Groovy Docs
170170
---------------
171171

172-
`1.14-SNAPSHOT <http://geoscript.github.io/geoscript-groovy/api/1.14-SNAPSHOT/index.html>`_
172+
`1.14.0 <http://geoscript.github.io/geoscript-groovy/api/1.14.0/index.html>`_
173173

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

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.13.0'
48+
version = '1.14.0'
4949
# The full version, including alpha/beta/rc tags.
50-
release = '1.13.0'
50+
release = '1.14.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.13.0 <https://github.com/jericks/geoscript-groovy/releases>`_ is the current stable version.
9+
`GeoScript Groovy 1.14.0 <https://github.com/jericks/geoscript-groovy/releases>`_ is the current stable version.
1010

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

doc/gradle.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Then edit the build.gradle file.
5151
}
5252
5353
dependencies {
54-
compile "org.geoscript:geoscript-groovy:1.13.0"
54+
compile "org.geoscript:geoscript-groovy:1.14.0"
5555
}
5656
5757
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.13.0</version>
34+
<version>1.14.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.13.0</version>
45+
<version>1.14.0</version>
4646
</dependency>
4747
<depenencies>
4848

doc/quickstart.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,16 @@ Install GeoScript
3333

3434
#. Unpack the GeoScript tarball::
3535

36-
unzip geoscript-groovy-1.13.0.zip
36+
unzip geoscript-groovy-1.14.0.zip
3737

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

doc/releases.rst

+21
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
33
GeoScript Groovy Releases
44
=========================
55

6+
1.14.0
7+
------
8+
The 1.14 release of GeoScript is build on Groovy 2.5.8, GeoTools 22.0, and the Java Topology Suite 1.16.1 and requires Java 8.
9+
10+
The SpatiaLite Workspace in now based on OGR.
11+
12+
Added a Geometry TWKB Reader.
13+
14+
Set user agent for OSM tile requests.
15+
16+
Added a LineString and MultiLineString createPointsAlong(double distance) method.
17+
18+
Fixed WMSLayer getBounds method.
19+
20+
Added Band.getDescription() method.
21+
22+
Added an example for creating a geopackage database from natural earth data.
23+
24+
Added an example for creating a MBTiles file from natural earth data.
25+
26+
627
1.13.0
728
------
829
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.

pom.xml

+2-2
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.14-SNAPSHOT</version>
8+
<version>1.14.0</version>
99
<repositories>
1010
<repository>
1111
<id>boundless</id>
@@ -504,7 +504,7 @@
504504
</plugins>
505505
</reporting>
506506
<properties>
507-
<gt.version>22-SNAPSHOT</gt.version>
507+
<gt.version>22.0</gt.version>
508508
</properties>
509509
<name>geoscript groovy</name>
510510
<description>A groovy implementation of geoscript.</description>

0 commit comments

Comments
 (0)