From: Sarah Hoffmann Date: Fri, 17 Nov 2023 15:31:05 +0000 (+0100) Subject: prepare release 4.2.4 X-Git-Tag: v4.2.4 X-Git-Url: https://git.openstreetmap.org/nominatim.git/commitdiff_plain/refs/tags/v4.2.4 prepare release 4.2.4 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 998363fd..94562f90 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,7 +20,7 @@ project(nominatim) set(NOMINATIM_VERSION_MAJOR 4) set(NOMINATIM_VERSION_MINOR 2) -set(NOMINATIM_VERSION_PATCH 3) +set(NOMINATIM_VERSION_PATCH 4) set(NOMINATIM_VERSION "${NOMINATIM_VERSION_MAJOR}.${NOMINATIM_VERSION_MINOR}.${NOMINATIM_VERSION_PATCH}") diff --git a/ChangeLog b/ChangeLog index 93efc15e..9e0dcacf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +4.2.4 + * fix a potential SQL injection in 'nominatim admin --collect-os-info' + * fix compatibility issue with PostGIS 3.4 + 4.2.3 * fix deletion handling for 'nominatim add-data' diff --git a/nominatim/version.py b/nominatim/version.py index 9648d183..05db8da0 100644 --- a/nominatim/version.py +++ b/nominatim/version.py @@ -25,7 +25,7 @@ from typing import Optional, Tuple # patch level when cherry-picking the commit with the migration. # # Released versions always have a database patch level of 0. -NOMINATIM_VERSION = (4, 2, 3, 0) +NOMINATIM_VERSION = (4, 2, 4, 0) POSTGRESQL_REQUIRED_VERSION = (9, 6) POSTGIS_REQUIRED_VERSION = (2, 2)