From 1187d0ab9aca9fe375f33d07ed9cb83f90d0b5fe Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Tue, 11 Apr 2023 15:35:42 +0200 Subject: [PATCH] prepare 4.2.3 release --- CMakeLists.txt | 2 +- ChangeLog | 7 +++++++ nominatim/version.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4cd36266..998363fd 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 2) +set(NOMINATIM_VERSION_PATCH 3) set(NOMINATIM_VERSION "${NOMINATIM_VERSION_MAJOR}.${NOMINATIM_VERSION_MINOR}.${NOMINATIM_VERSION_PATCH}") diff --git a/ChangeLog b/ChangeLog index 89861d0b..93efc15e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +4.2.3 + + * fix deletion handling for 'nominatim add-data' + * adapt place_force_delete() to new deletion handling + * flex style: avoid dropping of postcode areas + * fix update errors on address interpolation handling + 4.2.2 * extend flex-style library to fully support all default styles diff --git a/nominatim/version.py b/nominatim/version.py index 8bdc0490..9648d183 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, 2, 0) +NOMINATIM_VERSION = (4, 2, 3, 0) POSTGRESQL_REQUIRED_VERSION = (9, 6) POSTGIS_REQUIRED_VERSION = (2, 2) -- 2.43.2