mirror of https://github.com/getdnsapi/getdns.git
Bump version (to 1.3.0-rc2), update ChangeLog
This commit is contained in:
parent
274bc9bc4a
commit
d35fae5038
|
@ -1,6 +1,8 @@
|
||||||
* 2017-12-??: Version 1.2.2
|
* 2017-12-??: Version 1.3.0
|
||||||
|
* PR #366: Add support for TLS 1.3 and Chacha20-Poly1305
|
||||||
|
Thanks Pascal Ernster
|
||||||
* Bugfix #356: Do Zero configuration DNSSEC meta queries over on the
|
* Bugfix #356: Do Zero configuration DNSSEC meta queries over on the
|
||||||
context configured upstreams.
|
context configured upstreams. Thanks Andreas Schulze
|
||||||
* Report default extension settings with
|
* Report default extension settings with
|
||||||
getdns_context_get_api_information()
|
getdns_context_get_api_information()
|
||||||
* Specify locations at which CA certificates for verification purposes
|
* Specify locations at which CA certificates for verification purposes
|
||||||
|
@ -17,7 +19,7 @@
|
||||||
when available with getdns_context_get_api_information()
|
when available with getdns_context_get_api_information()
|
||||||
* GETDNS_RETURN_IO_ERROR return error code
|
* GETDNS_RETURN_IO_ERROR return error code
|
||||||
* Bugfix #359: edns_client_subnet_private should set family
|
* Bugfix #359: edns_client_subnet_private should set family
|
||||||
Thanks Daniel Areiza
|
Thanks Daniel Areiza & Andreas Schulze
|
||||||
* Bugfix getdnsapi/stubby#34: Segfault issue with native DNSSEC
|
* Bugfix getdnsapi/stubby#34: Segfault issue with native DNSSEC
|
||||||
validation. Thanks Bruno Pagani
|
validation. Thanks Bruno Pagani
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,7 @@ sinclude(./m4/acx_getaddrinfo.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], [1.2.2], [team@getdnsapi.net], [getdns], [https://getdnsapi.net])
|
AC_INIT([getdns], [1.3.0], [team@getdnsapi.net], [getdns], [https://getdnsapi.net])
|
||||||
|
|
||||||
# Autoconf 2.70 will have set up runstatedir. 2.69 is frequently (Debian)
|
# Autoconf 2.70 will have set up runstatedir. 2.69 is frequently (Debian)
|
||||||
# patched to do the same, but frequently (MacOS) not. So add a with option
|
# patched to do the same, but frequently (MacOS) not. So add a with option
|
||||||
|
@ -52,7 +52,7 @@ AC_SUBST([runstatedir], [$with_piddir])
|
||||||
# Dont forget to put a dash in front of the release candidate!!!
|
# Dont forget to put a dash in front of the release candidate!!!
|
||||||
# That is how it is done with semantic versioning!
|
# That is how it is done with semantic versioning!
|
||||||
#
|
#
|
||||||
AC_SUBST(RELEASE_CANDIDATE, [-rc1])
|
AC_SUBST(RELEASE_CANDIDATE, [-rc2])
|
||||||
|
|
||||||
# Set current date from system if not set
|
# Set current date from system if not set
|
||||||
AC_ARG_WITH([current-date],
|
AC_ARG_WITH([current-date],
|
||||||
|
@ -62,7 +62,7 @@ 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, [0x010201c1])
|
AC_SUBST(GETDNS_NUMERIC_VERSION, [0x010201c2])
|
||||||
AC_SUBST(API_VERSION, ["December 2015"])
|
AC_SUBST(API_VERSION, ["December 2015"])
|
||||||
AC_SUBST(API_NUMERIC_VERSION, [0x07df0c00])
|
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"
|
GETDNS_COMPILATION_COMMENT="AC_PACKAGE_NAME $GETDNS_VERSION configured on $CURRENT_DATE for the $API_VERSION version of the API"
|
||||||
|
@ -99,7 +99,7 @@ GETDNS_COMPILATION_COMMENT="AC_PACKAGE_NAME $GETDNS_VERSION configured on $CURRE
|
||||||
# getdns-1.1.3 had libversion 7:1:1
|
# getdns-1.1.3 had libversion 7:1:1
|
||||||
# getdns-1.2.0 had libversion 8:0:2
|
# getdns-1.2.0 had libversion 8:0:2
|
||||||
# getdns-1.2.1 has libversion 8:1:2
|
# getdns-1.2.1 has libversion 8:1:2
|
||||||
# getdns-1.2.2 will have libversion 9:0:3
|
# getdns-1.3.0 will have libversion 9:0:3
|
||||||
#
|
#
|
||||||
GETDNS_LIBVERSION=9:0:3
|
GETDNS_LIBVERSION=9:0:3
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue