mirror of https://github.com/getdnsapi/getdns.git
Complement ChangeLog and bump versions
This commit is contained in:
parent
d79884f10a
commit
ad23c446b6
21
ChangeLog
21
ChangeLog
|
@ -1,4 +1,4 @@
|
|||
*
|
||||
* 2015-12-??: Version 0.9.0
|
||||
* Update of unofficial extension to the API that supports stub mode
|
||||
TLS verification. GETDNS_AUTHENTICATION_HOSTNAME is replaced by
|
||||
GETDNS_AUTHENTICATION_REQUIRED (but remains available as an alias).
|
||||
|
@ -10,6 +10,25 @@
|
|||
* Remove STARTTLS implementation (no change to SPEC)
|
||||
* Enable TCP Fast Open when possible. Add OSX support for TFO.
|
||||
* Rename return_call_debugging to return_call_reporting
|
||||
* Bugfix: configure problem with getdns-0.5.1 on OpenBSD
|
||||
Thanks Claus Assmann.
|
||||
* pkg-config support. Thanks Neil Cook.
|
||||
* Functions to convert from RR dicts to wireformat and text format
|
||||
and vice versa. Including a function that builds a getdns_list
|
||||
of RR dicts from a zonefile.
|
||||
* Use the with the getdns_context_set_dns_root_servers() function provided
|
||||
root servers in recursing resolution modus.
|
||||
* getdns_query option (-f) to read a DNSSEC trust anchor from file.
|
||||
* getdns_query option (-R) to read a "root hints" file.
|
||||
* Bugfix: Detect and prevent duplicate NSEC(3)s to be returned with
|
||||
dnssec_return_validation_chain.
|
||||
* Bugfix: Remove duplicate RRs from RRsets when DNSSEC verifying
|
||||
* Client side edns-tcp-keepalive support
|
||||
* TSIG support
|
||||
* Verify upstream TLS pubkeys with pinsets; A getdns_query option
|
||||
(-K) to attach pinsets to getdns_contexts.
|
||||
Thanks Daniel Kahn Gillmor
|
||||
* Initial support for Windows. Thanks Gowri Visweswaran
|
||||
|
||||
* 2015-11-18: Version 0.5.1
|
||||
* Bugfix: growing upstreams arrow.
|
||||
|
|
12
configure.ac
12
configure.ac
|
@ -36,7 +36,7 @@ sinclude(./m4/acx_getaddrinfo.m4)
|
|||
sinclude(./m4/ax_check_compile_flag.m4)
|
||||
sinclude(./m4/pkg.m4)
|
||||
|
||||
AC_INIT([getdns], [0.6.1], [stub-resolver@verisignlabs.com], [], [https://getdnsapi.net])
|
||||
AC_INIT([getdns], [0.9.0], [stub-resolver@verisignlabs.com], [], [https://getdnsapi.net])
|
||||
AC_SUBST(RELEASE_CANDIDATE, [rc1])
|
||||
|
||||
# Set current date from system if not set
|
||||
|
@ -47,9 +47,9 @@ AC_ARG_WITH([current-date],
|
|||
[CURRENT_DATE="`date -u +%Y-%m-%dT%H:%M:%SZ`"])
|
||||
|
||||
AC_SUBST(GETDNS_VERSION, ["AC_PACKAGE_VERSION$RELEASE_CANDIDATE"])
|
||||
AC_SUBST(GETDNS_NUMERIC_VERSION, [0x00060001])
|
||||
AC_SUBST(API_VERSION, ["October 2015"])
|
||||
AC_SUBST(API_NUMERIC_VERSION, [0x07df0a00])
|
||||
AC_SUBST(GETDNS_NUMERIC_VERSION, [0x00090001])
|
||||
AC_SUBST(API_VERSION, ["December 2015"])
|
||||
AC_SUBST(API_NUMERIC_VERSION, [0x07df0c00])
|
||||
GETDNS_COMPILATION_COMMENT="AC_PACKAGE_NAME $GETDNS_VERSION configured on $CURRENT_DATE for the $API_VERSION version of the API"
|
||||
|
||||
|
||||
|
@ -76,9 +76,9 @@ GETDNS_COMPILATION_COMMENT="AC_PACKAGE_NAME $GETDNS_VERSION configured on $CURRE
|
|||
# getdns-0.3.3 had libversion 3:6:2
|
||||
# getdns-0.5.0 had libversion 4:0:3
|
||||
# getdns-0.5.1 had libversion 4:1:3 (but should have been getdns-0.6.0)
|
||||
# getdns-0.6.1 will have libversion 4:2:3
|
||||
# getdns-0.9.0 will have libversion 5:0:4
|
||||
#
|
||||
GETDNS_LIBVERSION=4:2:3
|
||||
GETDNS_LIBVERSION=5:0:4
|
||||
|
||||
AC_SUBST(GETDNS_COMPILATION_COMMENT)
|
||||
AC_SUBST(GETDNS_LIBVERSION)
|
||||
|
|
Loading…
Reference in New Issue