Skip to content

Commit 019c853

Browse files
committed
Release 5.26.0
1 parent 522ad0e commit 019c853

File tree

4 files changed

+28
-28
lines changed

4 files changed

+28
-28
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ mvn jetty:run
350350
<dependency>
351351
<groupId>org.neo4j</groupId>
352352
<artifactId>neo4j-spatial</artifactId>
353-
<version>5.20.0</version>
353+
<version>5.26.0</version>
354354
</dependency>
355355
</dependencies>
356356
</profile>
@@ -500,7 +500,7 @@ Add the following repositories and dependency to your project's pom.xml:
500500
<dependency>
501501
<groupId>org.neo4j</groupId>
502502
<artifactId>neo4j-spatial</artifactId>
503-
<version>5.20.0</version>
503+
<version>5.26.0</version>
504504
</dependency>
505505
~~~
506506

docs/docs/antora.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ nav:
66

77
asciidoc:
88
attributes:
9-
docs-version: 5.20
9+
docs-version: 5.26.0
1010
copyright: Neo4j Inc.
1111
page-product: Neo4j Spatial
1212
page-type: Neo4j Spatial Manual

docs/docs/modules/ROOT/partials/generated/api/spatial/spatial.wktToGeoJson-examples.adoc

+24-24
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ a|
1414
[source]
1515
----
1616
{
17-
"type" : "Point",
18-
"coordinates" : [ 30.0, 10.0 ]
17+
"coordinates" : [ 30.0, 10.0 ],
18+
"type" : "Point"
1919
}
2020
----
2121

@@ -37,8 +37,8 @@ a|
3737
[source]
3838
----
3939
{
40-
"type" : "LineString",
41-
"coordinates" : [ [ 30.0, 10.0 ], [ 10.0, 30.0 ], [ 40.0, 40.0 ] ]
40+
"coordinates" : [ [ 30.0, 10.0 ], [ 10.0, 30.0 ], [ 40.0, 40.0 ] ],
41+
"type" : "LineString"
4242
}
4343
----
4444

@@ -60,8 +60,8 @@ a|
6060
[source]
6161
----
6262
{
63-
"type" : "Polygon",
64-
"coordinates" : [ [ [ 30.0, 10.0 ], [ 40.0, 40.0 ], [ 20.0, 40.0 ], [ 10.0, 20.0 ], [ 30.0, 10.0 ] ] ]
63+
"coordinates" : [ [ [ 30.0, 10.0 ], [ 40.0, 40.0 ], [ 20.0, 40.0 ], [ 10.0, 20.0 ], [ 30.0, 10.0 ] ] ],
64+
"type" : "Polygon"
6565
}
6666
----
6767

@@ -83,8 +83,8 @@ a|
8383
[source]
8484
----
8585
{
86-
"type" : "Polygon",
87-
"coordinates" : [ [ [ 35.0, 10.0 ], [ 45.0, 45.0 ], [ 15.0, 40.0 ], [ 10.0, 20.0 ], [ 35.0, 10.0 ] ], [ [ 20.0, 30.0 ], [ 35.0, 35.0 ], [ 30.0, 20.0 ], [ 20.0, 30.0 ] ] ]
86+
"coordinates" : [ [ [ 35.0, 10.0 ], [ 45.0, 45.0 ], [ 15.0, 40.0 ], [ 10.0, 20.0 ], [ 35.0, 10.0 ] ], [ [ 20.0, 30.0 ], [ 35.0, 35.0 ], [ 30.0, 20.0 ], [ 20.0, 30.0 ] ] ],
87+
"type" : "Polygon"
8888
}
8989
----
9090

@@ -106,8 +106,8 @@ a|
106106
[source]
107107
----
108108
{
109-
"type" : "MultiPoint",
110-
"coordinates" : [ [ 10.0, 40.0 ], [ 40.0, 30.0 ], [ 20.0, 20.0 ], [ 30.0, 10.0 ] ]
109+
"coordinates" : [ [ 10.0, 40.0 ], [ 40.0, 30.0 ], [ 20.0, 20.0 ], [ 30.0, 10.0 ] ],
110+
"type" : "MultiPoint"
111111
}
112112
----
113113

@@ -129,8 +129,8 @@ a|
129129
[source]
130130
----
131131
{
132-
"type" : "MultiPoint",
133-
"coordinates" : [ [ 10.0, 40.0 ], [ 40.0, 30.0 ], [ 20.0, 20.0 ], [ 30.0, 10.0 ] ]
132+
"coordinates" : [ [ 10.0, 40.0 ], [ 40.0, 30.0 ], [ 20.0, 20.0 ], [ 30.0, 10.0 ] ],
133+
"type" : "MultiPoint"
134134
}
135135
----
136136

@@ -152,8 +152,8 @@ a|
152152
[source]
153153
----
154154
{
155-
"type" : "MultiLineString",
156-
"coordinates" : [ [ [ 10.0, 10.0 ], [ 20.0, 20.0 ], [ 10.0, 40.0 ] ], [ [ 40.0, 40.0 ], [ 30.0, 30.0 ], [ 40.0, 20.0 ], [ 30.0, 10.0 ] ] ]
155+
"coordinates" : [ [ [ 10.0, 10.0 ], [ 20.0, 20.0 ], [ 10.0, 40.0 ] ], [ [ 40.0, 40.0 ], [ 30.0, 30.0 ], [ 40.0, 20.0 ], [ 30.0, 10.0 ] ] ],
156+
"type" : "MultiLineString"
157157
}
158158
----
159159

@@ -175,8 +175,8 @@ a|
175175
[source]
176176
----
177177
{
178-
"type" : "MultiPolygon",
179-
"coordinates" : [ [ [ [ 30.0, 20.0 ], [ 45.0, 40.0 ], [ 10.0, 40.0 ], [ 30.0, 20.0 ] ] ], [ [ [ 15.0, 5.0 ], [ 40.0, 10.0 ], [ 10.0, 20.0 ], [ 5.0, 10.0 ], [ 15.0, 5.0 ] ] ] ]
178+
"coordinates" : [ [ [ [ 30.0, 20.0 ], [ 45.0, 40.0 ], [ 10.0, 40.0 ], [ 30.0, 20.0 ] ] ], [ [ [ 15.0, 5.0 ], [ 40.0, 10.0 ], [ 10.0, 20.0 ], [ 5.0, 10.0 ], [ 15.0, 5.0 ] ] ] ],
179+
"type" : "MultiPolygon"
180180
}
181181
----
182182

@@ -198,8 +198,8 @@ a|
198198
[source]
199199
----
200200
{
201-
"type" : "MultiPolygon",
202-
"coordinates" : [ [ [ [ 40.0, 40.0 ], [ 20.0, 45.0 ], [ 45.0, 30.0 ], [ 40.0, 40.0 ] ] ], [ [ [ 20.0, 35.0 ], [ 10.0, 30.0 ], [ 10.0, 10.0 ], [ 30.0, 5.0 ], [ 45.0, 20.0 ], [ 20.0, 35.0 ] ], [ [ 30.0, 20.0 ], [ 20.0, 15.0 ], [ 20.0, 25.0 ], [ 30.0, 20.0 ] ] ] ]
201+
"coordinates" : [ [ [ [ 40.0, 40.0 ], [ 20.0, 45.0 ], [ 45.0, 30.0 ], [ 40.0, 40.0 ] ] ], [ [ [ 20.0, 35.0 ], [ 10.0, 30.0 ], [ 10.0, 10.0 ], [ 30.0, 5.0 ], [ 45.0, 20.0 ], [ 20.0, 35.0 ] ], [ [ 30.0, 20.0 ], [ 20.0, 15.0 ], [ 20.0, 25.0 ], [ 30.0, 20.0 ] ] ] ],
202+
"type" : "MultiPolygon"
203203
}
204204
----
205205

@@ -223,14 +223,14 @@ a|
223223
{
224224
"type" : "GeometryCollection",
225225
"geometries" : [ {
226-
"type" : "Point",
227-
"coordinates" : [ 40.0, 10.0 ]
226+
"coordinates" : [ 40.0, 10.0 ],
227+
"type" : "Point"
228228
}, {
229-
"type" : "LineString",
230-
"coordinates" : [ [ 10.0, 10.0 ], [ 20.0, 20.0 ], [ 10.0, 40.0 ] ]
229+
"coordinates" : [ [ 10.0, 10.0 ], [ 20.0, 20.0 ], [ 10.0, 40.0 ] ],
230+
"type" : "LineString"
231231
}, {
232-
"type" : "Polygon",
233-
"coordinates" : [ [ [ 40.0, 40.0 ], [ 20.0, 45.0 ], [ 45.0, 30.0 ], [ 40.0, 40.0 ] ] ]
232+
"coordinates" : [ [ [ 40.0, 40.0 ], [ 20.0, 45.0 ], [ 45.0, 30.0 ], [ 40.0, 40.0 ] ] ],
233+
"type" : "Polygon"
234234
} ]
235235
}
236236
----

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<modelVersion>4.0.0</modelVersion>
2121
<artifactId>neo4j-spatial</artifactId>
2222
<groupId>org.neo4j</groupId>
23-
<version>5.26.0-SNAPSHOT</version>
23+
<version>5.26.0</version>
2424
<name>Neo4j - Spatial Components</name>
2525
<description>Spatial utilities and components for Neo4j</description>
2626
<url>https://components.neo4j.org/${project.artifactId}/${project.version}</url>

0 commit comments

Comments
 (0)