From f5c692dd30d81e90f42b7f0819114b5af20a122d Mon Sep 17 00:00:00 2001 From: Zhihang Yao Date: Fri, 19 Apr 2024 13:10:30 +0200 Subject: [PATCH] bumping version to 5.3.2 --- CHANGES.md | 12 +++++++++++- README.md | 4 ++-- build.gradle | 6 +++--- .../java/vcs/citydb/wfs/util/DatabaseConnector.java | 2 +- 4 files changed, 17 insertions(+), 7 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index bcf41b4..6dded4b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,10 +1,20 @@ Change Log ========== +### 5.3.2 - 2024-04-19 + +This release is based on the Importer/Exporter version 5.4.3 libraries, and thus incorporates all bug fixes and updates +introduced in that version ([more information](https://github.com/3dcitydb/importer-exporter/releases/tag/v5.4.3)). + +##### Miscellaneous +* Updated ipaddress to 5.5.0. + ### 5.3.1 - 2023-09-21 -* This release is based on the Importer/Exporter version 5.4.0 libraries, and thus incorporates all bug fixes and updates +This release is based on the Importer/Exporter version 5.4.0 libraries, and thus incorporates all bug fixes and updates introduced in that version ([more information](https://github.com/3dcitydb/importer-exporter/releases/tag/v5.4.0)). + +##### Miscellaneous * Updated tomcat docker image to version `9-jdk21-openjdk-slim` with lower vulnerabilities. ### 5.3.0 - 2022-12-15 diff --git a/README.md b/README.md index aeb5254..f80c280 100644 --- a/README.md +++ b/README.md @@ -24,9 +24,9 @@ previous release of the 3D City Database Importer/Exporter under Apache License Latest release -------------- -The latest stable release of the 3D City Database WFS interface is 5.3.1. +The latest stable release of the 3D City Database WFS interface is 5.3.2. -Download a ZIP file of the WFS [here](https://github.com/3dcitydb/web-feature-service/releases/download/v5.3.1/3DCityDB-Web-Feature-Service-5.3.1.zip). +Download a ZIP file of the WFS [here](https://github.com/3dcitydb/web-feature-service/releases/download/v5.3.2/3DCityDB-Web-Feature-Service-5.3.2.zip). Previous releases are available from the [releases section](https://github.com/3dcitydb/web-feature-service/releases). System requirements diff --git a/build.gradle b/build.gradle index b0336ac..70558c2 100644 --- a/build.gradle +++ b/build.gradle @@ -7,7 +7,7 @@ plugins { } group 'org.citydb.wfs' -version '5.3.1' +version '5.3.2' apply from: 'properties.gradle' @@ -46,8 +46,8 @@ repositories { } dependencies { - implementation 'org.citydb:impexp-core:5.4.0' - implementation 'com.github.seancfoley:ipaddress:5.3.4' + implementation 'org.citydb:impexp-core:5.4.3' + implementation 'com.github.seancfoley:ipaddress:5.5.0' implementation 'org.glassfish.jersey.containers:jersey-container-servlet:2.37' implementation 'org.glassfish.jersey.inject:jersey-hk2:2.37' diff --git a/src/main/java/vcs/citydb/wfs/util/DatabaseConnector.java b/src/main/java/vcs/citydb/wfs/util/DatabaseConnector.java index 1af3f44..02f87d7 100644 --- a/src/main/java/vcs/citydb/wfs/util/DatabaseConnector.java +++ b/src/main/java/vcs/citydb/wfs/util/DatabaseConnector.java @@ -9,7 +9,7 @@ import org.citydb.core.util.CoreConstants; import org.citydb.core.util.Util; import org.citydb.util.log.Logger; -import org.opengis.referencing.FactoryException; +import org.geotools.api.referencing.FactoryException; import vcs.citydb.wfs.exception.WFSException; import vcs.citydb.wfs.exception.WFSExceptionCode; import vcs.citydb.wfs.exception.WFSExceptionMessage;