Skip to content

Commit 96441de

Browse files
committed
use correct version for this year.
1 parent 5c90330 commit 96441de

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ It is originally based on [postgis-java](https://github.com/postgis/postgis-java
2020
* Clean up code to basically only work on [WKB](https://en.wikipedia.org/wiki/Well-known_text#Well-known_binary)/EWKB implementations to reduce code duplication and focus on the actual database format
2121
* Support for the latest PostgreSQL and PostGIS versions
2222
* Recommended are PostgreSQL 14 and PostGIS 3.2.0
23-
* Supported are versions starting from PostgreSQL 9.6 and PostGIS versions 2.3
23+
* Supported are versions starting from PostgreSQL 9.6 and PostGIS 2.3
2424
* Support for JDK 11+ (there is an older [branch for JDK 8](https://github.com/sebasbaumh/postgis-java-ng/tree/jdk8))
2525
* The license is still LGPL
2626

@@ -45,10 +45,12 @@ There is a Maven artifact in the official Maven repository, so just add this to
4545
<dependency>
4646
<groupId>io.github.sebasbaumh</groupId>
4747
<artifactId>postgis-java-ng</artifactId>
48-
<version>21.0.0</version>
48+
<version>22.0.0</version>
4949
</dependency>
5050
```
5151

52+
The version reflects the year of the release, e.g. 22.0.0 is a version released in 2022.
53+
5254
The API differs a bit from [postgis-java](https://github.com/postgis/postgis-java) with the main point being a different namespace (`io.github.sebasbaumh.postgis`) as publishing a project to Maven Central requires to own that namespace.
5355
In addition the class structure is a bit different (see below) to support arc geometries and reduce boilerplate code, but you should be able to adapt to it easily.
5456
The implementations of the parser and writer for the geometries have been heavily reworked to speed up processing and reduce complexity.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<groupId>io.github.sebasbaumh</groupId>
44
<artifactId>postgis-java-ng</artifactId>
55
<!-- version for release -->
6-
<version>21.0.1-SNAPSHOT</version>
6+
<version>22.0.0-SNAPSHOT</version>
77
<packaging>jar</packaging>
88
<name>PostGIS Java bindings</name>
99
<description>This project contains Java bindings for using PostGIS geometries coming from a PostgreSQL database.</description>

0 commit comments

Comments
 (0)