From: Sarah Hoffmann Date: Wed, 4 Oct 2023 14:44:50 +0000 (+0200) Subject: prepare 4.3.1 release X-Git-Tag: v4.3.1 X-Git-Url: https://git.openstreetmap.org/nominatim.git/commitdiff_plain/refs/tags/v4.3.1 prepare 4.3.1 release --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 536b21bc..d653137b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,7 +20,7 @@ project(nominatim) set(NOMINATIM_VERSION_MAJOR 4) set(NOMINATIM_VERSION_MINOR 3) -set(NOMINATIM_VERSION_PATCH 0) +set(NOMINATIM_VERSION_PATCH 1) set(NOMINATIM_VERSION "${NOMINATIM_VERSION_MAJOR}.${NOMINATIM_VERSION_MINOR}.${NOMINATIM_VERSION_PATCH}") diff --git a/ChangeLog b/ChangeLog index fae0d68f..4988c3fa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +4.3.1 + * reintroduce result rematching + * improve search of multi-part names + * fix accidentally switched meaning of --reverse-only and --search-only in + warm command + 4.3.0 * fix failing importance recalculation command * fix merging of linked names into unnamed boundaries diff --git a/nominatim/version.py b/nominatim/version.py index 95420b34..6a3d8cad 100644 --- a/nominatim/version.py +++ b/nominatim/version.py @@ -34,7 +34,7 @@ class NominatimVersion(NamedTuple): return f"{self.major}.{self.minor}.{self.patch_level}-{self.db_patch_level}" -NOMINATIM_VERSION = NominatimVersion(4, 3, 0, 0) +NOMINATIM_VERSION = NominatimVersion(4, 3, 1, 0) POSTGRESQL_REQUIRED_VERSION = (9, 6) POSTGIS_REQUIRED_VERSION = (2, 2)