]> git.openstreetmap.org Git - nominatim.git/commitdiff
prepare release 4.2.2 v4.2.2
authorSarah Hoffmann <lonvia@denofr.de>
Wed, 22 Mar 2023 17:16:01 +0000 (18:16 +0100)
committerSarah Hoffmann <lonvia@denofr.de>
Wed, 22 Mar 2023 17:16:01 +0000 (18:16 +0100)
CMakeLists.txt
ChangeLog
nominatim/version.py

index 9161def0e0298c9dd5ca8fffe23f16493a7e01e7..4cd36266a47b0e9b6907a7113eebd429b4a410d2 100644 (file)
@@ -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}")
 
index 7c5d58bf2a3430ef4637c49ec2a61e709dd74c14..89861d0ba6a99a670a761bfc513ea6fcf0a381b2 100644 (file)
--- 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
index 75f50e25a9f341c6fc7a30bf8dac1bb7315773e1..8bdc04905ac0eb7bfbed6876b591fcde08eb89d2 100644 (file)
@@ -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)