1# Version numbering central repository, to be included from various
2# places during the build process
3
4# See HOWTO_RELEASE file in SVN for definitions of those three.
5
6POSTGIS_MAJOR_VERSION=3
7POSTGIS_MINOR_VERSION=1
8POSTGIS_MICRO_VERSION=4
9
10# Liblwgeom interface versioning, reset to 0:0:0 (cur:age:rev)
11# when changing POSTGIS_MINOR_VERSION
12
13# Current interface, increments when adding an interface
14LIBLWGEOM_IFACE_CUR=0
15# Age of current interface, only changes when current interface
16# changes, either incrementing with it (compatible change) or
17# going back to zero (incompatible change).
18LIBLWGEOM_IFACE_AGE=0
19# Revision of current interface, set to 0 when adding an interface
20# or increment when just changing implementations.
21LIBLWGEOM_IFACE_REV=0
22
23