]> git.openstreetmap.org Git - nominatim.git/blob - nominatim/version.py
prepare 4.0.1 release
[nominatim.git] / nominatim / version.py
1 """
2 Version information for Nominatim.
3 """
4
5 # Version information: major, minor, patch level, database patch level
6 #
7 # The first three numbers refer to the last released version.
8 #
9 # The database patch level tracks important changes between releases
10 # and must always be increased when there is a change to the database or code
11 # that requires a migration.
12 # Released versions always have a database patch level of 0.
13 NOMINATIM_VERSION = (4, 0, 1, 0)
14
15 POSTGRESQL_REQUIRED_VERSION = (9, 5)
16 POSTGIS_REQUIRED_VERSION = (2, 2)