diff --git a/pom.xml b/pom.xml
index a687b9dc..22b7dcd2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
org.geocommands
geocommands
jar
- 0.21.0-SNAPSHOT
+ 0.21.0
GeoCommands
A collection of geospatial command line applications
@@ -49,7 +49,7 @@
org.geoscript
geoscript-groovy
- 1.22.0-SNAPSHOT
+ 1.22.0
args4j
@@ -129,8 +129,8 @@
maven-compiler-plugin
3.11.0
-
- 1.8
+
+ 11
groovy-eclipse-compiler
diff --git a/src/main/docs/index.adoc b/src/main/docs/index.adoc
index e1effe80..5547e37f 100644
--- a/src/main/docs/index.adoc
+++ b/src/main/docs/index.adoc
@@ -1,6 +1,6 @@
= Geoc
Jared Erickson
-v0.20.0
+v0.21.0
:title-page:
:title-logo-image: image:geoc.png[pdfwidth=5.5in,align=center]
ifndef::imagesdir[:imagesdir: images]
diff --git a/src/test/groovy/org/geocommands/doc/TileTest.groovy b/src/test/groovy/org/geocommands/doc/TileTest.groovy
index 9da7f7f5..f3155f70 100644
--- a/src/test/groovy/org/geocommands/doc/TileTest.groovy
+++ b/src/test/groovy/org/geocommands/doc/TileTest.groovy
@@ -227,15 +227,14 @@ class TileTest extends DocTest {
@Test
void vectorGrid() {
List commands = ["tile", "vector", "grid",
- "-l", "type=geopackage file=src/main/resources/data.gpkg name=world",
+ "-l", "type=geopackage file=src/test/resources/data.gpkg name=world",
"-o", "target/world_grid_1.shp",
"-z", "2"
]
String command = "geoc " + commands.collect{
it.startsWith("type") ? '"' + it + '"' : it
}.join(" ")
- String result = runApp(commands, "")
- println result
+ runApp(commands, "")
writeTextFile("geoc_tile_vector_grid_command", command)
Layer layer = new Shapefile("target/world_grid_1.shp")
layer.style = new Stroke("black", 1)
diff --git a/src/website/source/conf.py b/src/website/source/conf.py
index 06a34d3f..ea690038 100644
--- a/src/website/source/conf.py
+++ b/src/website/source/conf.py
@@ -22,7 +22,7 @@
author = 'Jared Erickson'
# The full version, including alpha/beta/rc tags
-release = '0.20.0'
+release = '0.21.0'
# -- General configuration ---------------------------------------------------