Skip to content

Commit b536563

Browse files
committed
Start working on 1.21.0
1 parent 24a3f28 commit b536563

5 files changed

Lines changed: 8 additions & 6 deletions

File tree

README.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,8 @@ Versions
151151
+-----------+----------+-----------+--------+----------+
152152
| GeoScript | GeoTools | GeoServer | JTS | Groovy |
153153
+-----------+----------+-----------+--------+----------+
154+
| 1.21 | 29 | 2.23 | 1.19.0 | 3.0.14 |
155+
+-----------+----------+-----------+--------+----------+
154156
| 1.20 | 28 | 2.22 | 1.19.0 | 3.0.13 |
155157
+-----------+----------+-----------+--------+----------+
156158
| 1.19 | 27 | 2.21 | 1.18.2 | 3.0.11 |

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
<groupId>org.geoscript</groupId>
99
<artifactId>geoscript-groovy</artifactId>
1010
<packaging>jar</packaging>
11-
<version>1.20.0</version>
11+
<version>1.21.0-SNAPSHOT</version>
1212
<properties>
13-
<gt.version>28.0</gt.version>
13+
<gt.version>29-SNAPSHOT</gt.version>
1414
<jts.version>1.19.0</jts.version>
15-
<groovy.version>3.0.13</groovy.version>
15+
<groovy.version>3.0.14</groovy.version>
1616
</properties>
1717
<dependencies>
1818
<dependency>

src/test/groovy/geoscript/feature/FeatureTest.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ class FeatureTest {
235235
</gsf:geom>
236236
<gsf:price>12.5</gsf:price>
237237
</gsf:houses>
238-
""", f1.gml, removeXmlNS: true
238+
""", f1.gml, removeXmlNS: true, trim: true
239239
}
240240

241241
@Test void fromGml() {

src/test/groovy/geoscript/feature/io/GmlWriterTest.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class GmlWriterTest {
3737
</gsf:houses>
3838
"""
3939
String actual = writer.write(feature)
40-
AssertUtil.assertStringsEqual expected, actual, removeXmlNS: true
40+
AssertUtil.assertStringsEqual expected, actual, removeXmlNS: true, trim: true
4141
}
4242

4343
}

src/test/groovy/geoscript/filter/FilterTest.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class FilterTest {
6969
</ogc:PropertyIsEqualTo>
7070
</ogc:Filter>
7171
"""
72-
AssertUtil.assertStringsEqual expected, actual, removeXmlNS: true
72+
AssertUtil.assertStringsEqual expected, actual, removeXmlNS: true, trim: true
7373

7474
actual = f.getXml(false, 1.1)
7575
expected = """<ogc:Filter xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:gml="http://www.opengis.net/gml" xmlns:ogc="http://www.opengis.net/ogc"><ogc:PropertyIsEqualTo matchCase="true"><ogc:PropertyName>name</ogc:PropertyName><ogc:Literal>foobar</ogc:Literal></ogc:PropertyIsEqualTo></ogc:Filter>"""

0 commit comments

Comments
 (0)