Skip to content

Commit a3983db

Browse files
committed
Release 1.2
1 parent 2e58de2 commit a3983db

File tree

5 files changed

+40
-9
lines changed

5 files changed

+40
-9
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Use maven to build, test, and package::
1818

1919
mvn clean install
2020

21-
The distribution can be found in target/geoscript-groovy-1.1-app/geoscript-groovy-1.1.
21+
The distribution can be found in target/geoscript-groovy-${version}-app/geoscript-groovy-${version}.
2222

2323
Use
2424
---
@@ -107,7 +107,7 @@ and then include the GeoScript Groovy dependency::
107107
<dependencies>
108108
<groupId>org.geoscript</groupId>
109109
<artifactId>geoscript-groovy</artifactId>
110-
<version>1.1</version>
110+
<version>1.2</version>
111111
</dependencies>
112112

113113
License

doc/download.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Downloads
66
Stable
77
------
88

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

1111
Experimental
1212
------------
@@ -15,4 +15,4 @@ Experimental
1515

1616
Experimental releases are unstable in nature and contain api that is subject to change without deprecation.
1717

18-
GeoScript Groovy 1.2-SNAPSHOT is currently being developed on the master branch.
18+
The next version of GeoScript Groovy is currently being developed on the master branch.

doc/quickstart.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ Install GeoScript
3333

3434
#. Unpack the GeoScript tarball::
3535

36-
unzip geoscript-groovy-1.1.zip
36+
unzip geoscript-groovy-1.2.zip
3737

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

40-
export PATH=geoscript-groovy-1.1\bin:$PATH
40+
export PATH=geoscript-groovy-1.2\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: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,37 @@
33
GeoScript Groovy Releases
44
=========================
55

6+
1.2
7+
---
8+
9+
The 1.2 release of GeoScript was built on Groovy 2.1.6, GeoTools 10.0, and Java Topology Suite 1.13.
10+
11+
The focus was on upgrading to a modern and supported version of Groovy and a few small features and bug fixes.
12+
13+
**Upgrades**
14+
15+
* Upgrade to GeoTools 10
16+
17+
* Upgrade to Groovy 2.1.6
18+
19+
* Upgrade to GeoCSS 0.8.3
20+
21+
**Features**
22+
23+
* The geoscript.layer.io.Readers can now take optional projection, workspace, name parameters
24+
25+
* The geoscript.layer.io.CsvReader and CsvWriter by default now encode Field type in the header but this can be disabled
26+
27+
* Added a MultiLineString.polygonizeFull() method that returns a Map with polygons, cut edges, dangles, and invalid ring lines.
28+
29+
* Added Schema.includeFields to create a new Schema from an existing Schema with a subset of fields
30+
31+
**Bug Fixes**
32+
33+
* Fixed Cursor paging bug - it's start and max not start and end
34+
35+
* Fixed CsvReader bug couldn't guess WKT when it was formatted without a space ("POINT(1 1)" instead of "POINT (1 1)")
36+
637
1.1
738
---
839

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>org.geoscript</groupId>
55
<artifactId>geoscript-groovy</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.2-SNAPSHOT</version>
7+
<version>1.2</version>
88
<repositories>
99
<repository>
1010
<id>opengeo</id>
@@ -362,7 +362,7 @@
362362
</plugins>
363363
</reporting>
364364
<properties>
365-
<gt.version>10-SNAPSHOT</gt.version>
365+
<gt.version>10.0</gt.version>
366366
</properties>
367367
<name>geoscript groovy</name>
368368
<description>A groovy implementation of geoscript.</description>

0 commit comments

Comments
 (0)