diff --git a/CMakeLists.txt b/CMakeLists.txt index 65c5c0739..06786dbc4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,7 +20,7 @@ project(nominatim) set(NOMINATIM_VERSION_MAJOR 4) set(NOMINATIM_VERSION_MINOR 4) -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 2f5d51d5f..d35ad49f9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +4.4.1 + * fix geocodejson output: admin level output should only print boundaries + * updating: restrict invalidation of child objects on large street features + * restrict valid interpolation house numbers to 0-999999 + * fix import error when SQLAlchemy 1.4 and psycopg3 are installed + * various typo fixes in the documentation + 4.4.0 * add export to SQLite database and SQLite support for the frontend * switch to Python frontend as the default frontend diff --git a/nominatim/version.py b/nominatim/version.py index 88112cf6c..283151cd5 100644 --- a/nominatim/version.py +++ b/nominatim/version.py @@ -34,7 +34,7 @@ def __str__(self) -> str: return f"{self.major}.{self.minor}.{self.patch_level}-{self.db_patch_level}" -NOMINATIM_VERSION = NominatimVersion(4, 4, 0, 0) +NOMINATIM_VERSION = NominatimVersion(4, 4, 1, 0) POSTGRESQL_REQUIRED_VERSION = (9, 6) POSTGIS_REQUIRED_VERSION = (2, 2)