Skip to content

Commit

Permalink
Release 0.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jericks committed Oct 31, 2023
1 parent 42c83d0 commit 6ea22bf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>org.geocommands</groupId>
<artifactId>geocommands</artifactId>
<packaging>jar</packaging>
<version>0.21.0-SNAPSHOT</version>
<version>0.21.0</version>
<name>GeoCommands</name>
<description>A collection of geospatial command line applications</description>
<properties>
Expand Down Expand Up @@ -49,7 +49,7 @@
<dependency>
<groupId>org.geoscript</groupId>
<artifactId>geoscript-groovy</artifactId>
<version>1.22.0-SNAPSHOT</version>
<version>1.22.0</version>
</dependency>
<dependency>
<groupId>args4j</groupId>
Expand Down Expand Up @@ -129,8 +129,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>11</source>
<target>11</target>
<compilerId>groovy-eclipse-compiler</compilerId>
</configuration>
<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion src/main/docs/index.adoc
Original file line number Diff line number Diff line change
@@ -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]
Expand Down
5 changes: 2 additions & 3 deletions src/test/groovy/org/geocommands/doc/TileTest.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/website/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------

Expand Down

0 comments on commit 6ea22bf

Please sign in to comment.