mirror of https://github.com/getdnsapi/getdns.git
Bump versions and ChangeLog for 0.5.0rc1
This commit is contained in:
parent
31a07752f0
commit
d601443c7e
|
@ -1,6 +1,8 @@
|
||||||
* 2015-10-??: Version 0.3.4
|
* 2015-10-??: Version 0.5.0
|
||||||
* Native crypto. No ldns dependency anymore.
|
* Native crypto. No ldns dependency anymore.
|
||||||
(ldns still necessary to be able to run tests though)
|
(ldns still necessary to be able to run tests though)
|
||||||
|
* JSON pointer arguments to getdns_dict_get_* and getdns_dict_set_*
|
||||||
|
to dereference nested dicts and lists.
|
||||||
* Bugfix: DNSSEC code finding zone cut with redirects + pursuing unsigned
|
* Bugfix: DNSSEC code finding zone cut with redirects + pursuing unsigned
|
||||||
DS answers close to the root. Thanks Theogene Bucuti!
|
DS answers close to the root. Thanks Theogene Bucuti!
|
||||||
* Default port for TLS changed to 853
|
* Default port for TLS changed to 853
|
||||||
|
|
12
configure.ac
12
configure.ac
|
@ -35,7 +35,7 @@ sinclude(./m4/acx_openssl.m4)
|
||||||
sinclude(./m4/ax_check_compile_flag.m4)
|
sinclude(./m4/ax_check_compile_flag.m4)
|
||||||
sinclude(./m4/pkg.m4)
|
sinclude(./m4/pkg.m4)
|
||||||
|
|
||||||
AC_INIT([getdns], [0.3.4], [stub-resolver@verisignlabs.com], [], [https://getdnsapi.net])
|
AC_INIT([getdns], [0.5.0], [stub-resolver@verisignlabs.com], [], [https://getdnsapi.net])
|
||||||
AC_SUBST(RELEASE_CANDIDATE, [rc1])
|
AC_SUBST(RELEASE_CANDIDATE, [rc1])
|
||||||
|
|
||||||
# Set current date from system if not set
|
# Set current date from system if not set
|
||||||
|
@ -46,9 +46,9 @@ AC_ARG_WITH([current-date],
|
||||||
[CURRENT_DATE="`date -u +%Y-%m-%dT%H:%M:%SZ`"])
|
[CURRENT_DATE="`date -u +%Y-%m-%dT%H:%M:%SZ`"])
|
||||||
|
|
||||||
AC_SUBST(GETDNS_VERSION, ["AC_PACKAGE_VERSION$RELEASE_CANDIDATE"])
|
AC_SUBST(GETDNS_VERSION, ["AC_PACKAGE_VERSION$RELEASE_CANDIDATE"])
|
||||||
AC_SUBST(GETDNS_NUMERIC_VERSION, [0x00030301])
|
AC_SUBST(GETDNS_NUMERIC_VERSION, [0x00040001])
|
||||||
AC_SUBST(API_VERSION, ["July 2015"])
|
AC_SUBST(API_VERSION, ["October 2015"])
|
||||||
AC_SUBST(API_NUMERIC_VERSION, [0x07df0700])
|
AC_SUBST(API_NUMERIC_VERSION, [0x07df0a00])
|
||||||
GETDNS_COMPILATION_COMMENT="AC_PACKAGE_NAME $GETDNS_VERSION configured on $CURRENT_DATE for the $API_VERSION version of the API"
|
GETDNS_COMPILATION_COMMENT="AC_PACKAGE_NAME $GETDNS_VERSION configured on $CURRENT_DATE for the $API_VERSION version of the API"
|
||||||
|
|
||||||
|
|
||||||
|
@ -73,9 +73,9 @@ GETDNS_COMPILATION_COMMENT="AC_PACKAGE_NAME $GETDNS_VERSION configured on $CURRE
|
||||||
# getdns-0.3.1 had libversion 3:4:2
|
# getdns-0.3.1 had libversion 3:4:2
|
||||||
# getdns-0.3.2 had libversion 3:5:2
|
# getdns-0.3.2 had libversion 3:5:2
|
||||||
# getdns-0.3.3 has libversion 3:6:2
|
# getdns-0.3.3 has libversion 3:6:2
|
||||||
# getdns-0.3.4 will have libversion 3:7:2
|
# getdns-0.5.0 will have libversion 4:0:3
|
||||||
#
|
#
|
||||||
GETDNS_LIBVERSION=3:6:2
|
GETDNS_LIBVERSION=4:0:3
|
||||||
|
|
||||||
AC_SUBST(GETDNS_COMPILATION_COMMENT)
|
AC_SUBST(GETDNS_COMPILATION_COMMENT)
|
||||||
AC_SUBST(GETDNS_LIBVERSION)
|
AC_SUBST(GETDNS_LIBVERSION)
|
||||||
|
|
Loading…
Reference in New Issue