]> git.openstreetmap.org Git - nominatim.git/commitdiff
prepare 4.2.3 release v4.2.3
authorSarah Hoffmann <lonvia@denofr.de>
Tue, 11 Apr 2023 13:35:42 +0000 (15:35 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Tue, 11 Apr 2023 13:35:42 +0000 (15:35 +0200)
CMakeLists.txt
ChangeLog
nominatim/version.py

index 4cd36266a47b0e9b6907a7113eebd429b4a410d2..998363fd49e116bfbb5132f64400434ecf0b8c46 100644 (file)
@@ -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}")
 
index 89861d0ba6a99a670a761bfc513ea6fcf0a381b2..93efc15e8f3194f183d6d643009d3c79c11d855b 100644 (file)
--- 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
index 8bdc04905ac0eb7bfbed6876b591fcde08eb89d2..9648d183245c81e45e01883976a7028b435ef61f 100644 (file)
@@ -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)