From 069f3f5dea87212c0621f33ac700bbd2d680135d Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Wed, 22 Mar 2023 18:16:01 +0100 Subject: [PATCH] prepare release 4.2.2 --- CMakeLists.txt | 2 +- ChangeLog | 15 +++++++++++++++ nominatim/version.py | 4 ++-- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9161def0..4cd36266 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 1) +set(NOMINATIM_VERSION_PATCH 2) set(NOMINATIM_VERSION "${NOMINATIM_VERSION_MAJOR}.${NOMINATIM_VERSION_MINOR}.${NOMINATIM_VERSION_PATCH}") diff --git a/ChangeLog b/ChangeLog index 7c5d58bf..89861d0b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,18 @@ +4.2.2 + + * extend flex-style library to fully support all default styles + * fix handling of Hebrew aleph + * do not assign postcodes to rivers + * fix string matching in PHP code + * update osm2pgsql (various updates to flex) + * fix slow query when deleting places on update + * fix CLI details query + * fix recalculation of importance values + * fix polygon simplification in reverse results + * add class/type information to reverse geocodejson result + * minor improvements to default tokenizer configuration + * various smaller fixes to documentation + 4.2.1 * fix XSS vulnerability in debug view diff --git a/nominatim/version.py b/nominatim/version.py index 75f50e25..8bdc0490 100644 --- a/nominatim/version.py +++ b/nominatim/version.py @@ -2,7 +2,7 @@ # # This file is part of Nominatim. (https://nominatim.org) # -# Copyright (C) 2022 by the Nominatim developer community. +# Copyright (C) 2023 by the Nominatim developer community. # For a full list of authors see the git log. """ Version information for Nominatim. @@ -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, 1, 0) +NOMINATIM_VERSION = (4, 2, 2, 0) POSTGRESQL_REQUIRED_VERSION = (9, 6) POSTGIS_REQUIRED_VERSION = (2, 2) -- 2.43.2