From d601443c7ee2de827a17fbabf5bff4ee336269f7 Mon Sep 17 00:00:00 2001 From: Willem Toorop Date: Wed, 21 Oct 2015 17:19:50 +0200 Subject: [PATCH] Bump versions and ChangeLog for 0.5.0rc1 --- ChangeLog | 4 +++- configure.ac | 12 ++++++------ 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index c4569813..baf0f959 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,8 @@ -* 2015-10-??: Version 0.3.4 +* 2015-10-??: Version 0.5.0 * Native crypto. No ldns dependency anymore. (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 DS answers close to the root. Thanks Theogene Bucuti! * Default port for TLS changed to 853 diff --git a/configure.ac b/configure.ac index 22f05f3e..3274c420 100644 --- a/configure.ac +++ b/configure.ac @@ -35,7 +35,7 @@ sinclude(./m4/acx_openssl.m4) sinclude(./m4/ax_check_compile_flag.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]) # 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`"]) AC_SUBST(GETDNS_VERSION, ["AC_PACKAGE_VERSION$RELEASE_CANDIDATE"]) -AC_SUBST(GETDNS_NUMERIC_VERSION, [0x00030301]) -AC_SUBST(API_VERSION, ["July 2015"]) -AC_SUBST(API_NUMERIC_VERSION, [0x07df0700]) +AC_SUBST(GETDNS_NUMERIC_VERSION, [0x00040001]) +AC_SUBST(API_VERSION, ["October 2015"]) +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" @@ -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.2 had libversion 3:5: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_LIBVERSION)