@@ -19,18 +19,56 @@ set(PACKAGE_URL "https://getdnsapi.net")
1919
2020# Dont forget to put a dash in front of the release candidate!!!
2121# That is how it is done with semantic versioning!
22- set (RELEASE_CANDIDATE "-rc.1 " )
22+ set (RELEASE_CANDIDATE "" )
2323
2424set (PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}${RELEASE_CANDIDATE} " )
2525set (PACKAGE_TARNAME "${PACKAGE} -${PACKAGE_VERSION}${RELEASE_CANDIDATE} " )
2626
2727set (GETDNS_VERSION "${PACKAGE_VERSION}${RELEASE_CANDIDATE} " )
28- set (GETDNS_NUMERIC_VERSION 0x0105ffd1 )
28+ set (GETDNS_NUMERIC_VERSION 0x01060000 )
2929set (API_VERSION "December 2015" )
3030set (API_NUMERIC_VERSION 0x07df0c00)
3131
3232
33- # Version 11:2:1 in libtool-speak.
33+ # Library version
34+ # ---------------
35+ # current:revision:age
36+ # (binary-api-number):(which-binary-api-version):(how-many-nrs-backwardscompat)
37+ # if source code changes increment revision
38+ # if any interfaces have been added/removed/changed since last update then
39+ # increment current and set revision to 0
40+ # if any interfaces have been added since the last public release then increment age
41+ # if any interfaces have been removed or changed since the last public release then
42+ # set age to 0
43+ #
44+ # getdns-0.1.4 had libversion 0:0:0
45+ # getdns-0.1.5 had libversion 1:0:0
46+ # getdns-0.1.6 had libversion 1:1:0
47+ # getdns-0.1.7 had libversion 1:2:1 (but should have had 2:0:1)
48+ # getdns-0.1.8 had libversion 1:3:0 (but should have had 2:1:1)
49+ # getdns-0.2.0 had libversion 2:2:1
50+ # getdns-0.3.0 had libversion 3:3:2
51+ # getdns-0.3.1 had libversion 3:4:2
52+ # getdns-0.3.2 had libversion 3:5:2
53+ # getdns-0.3.3 had libversion 3:6:2
54+ # getdns-0.5.0 had libversion 4:0:3
55+ # getdns-0.5.1 had libversion 4:1:3 (but should have been getdns-0.6.0)
56+ # getdns-0.9.0 had libversion 5:0:4
57+ # getdns-1.0.0 had libversion 5:1:4
58+ # getdns-1.1.0 had libversion 6:0:0
59+ # getdns-1.1.1 had libversion 6:1:0
60+ # getdns-1.1.2 had libversion 7:0:1
61+ # getdns-1.1.3 had libversion 7:1:1
62+ # getdns-1.2.0 had libversion 8:0:2
63+ # getdns-1.2.1 had libversion 8:1:2
64+ # getdns-1.3.0 had libversion 9:0:3
65+ # getdns-1.4.0 had libversion 10:0:0
66+ # getdns-1.4.1 had libversion 10:1:0
67+ # getdns-1.4.2 had libversion 10:2:0
68+ # getdns-1.5.0 had libversion 11:0:1
69+ # getdns-1.5.1 had libversion 11:1:1
70+ # getdns-1.5.2 had libversion 11:2:1
71+ # getdns-1.6.0 has libversion 11:3:1
3472set (GETDNS_VERSION_CURRENT 11)
3573set (GETDNS_VERSION_REVISION 3)
3674set (GETDNS_VERSION_AGE 1)
0 commit comments