]> git.openstreetmap.org Git - nominatim.git/blob - nominatim/version.py
e7f31a12b5ab4dcebcfed07e9a32effdb1e716c4
[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 = (3, 6, 0, 0)
14
15 POSTGRESQL_REQUIRED_VERSION = (9, 3)
16 POSTGIS_REQUIRED_VERSION = (2, 2)