Prepare for 0.1.7rc1

This commit is contained in:
Willem Toorop 2015-03-26 16:09:02 -05:00
parent 22cf2fc14d
commit beb911daf1
4 changed files with 47 additions and 16 deletions

View File

@ -1,3 +1,28 @@
* 2015-0?-??: Version 0.1.7
* Individual getter functions for context settings
* Fix: --with-current-date function to make build deterministically
reproducible (i.e. the GETDNS_COMPILATION_COMMENT define from
getdns.h contains a date value). Thanks Ondřej Surý
* Fix: Include m4 dir in distribution tarball
* Fix: Link build requirements in tests too. Thanks Ondřej Surý
* Fix: Remove executable flags on source files. Thanks Paul Wouters
* Fix: Return "just_address_answers" only when queried for addresses
* Eliminate ldns intermediate wireformat parsing
* The CSYNC RR type
* Fix: canonical_name in response dict returns the canonical name
found after following all CNAMEs
* Implementation of the section 6 and 7 version of
draft-ietf-dnsop-cookies-01.txt for stub resolution. Enable with the
--enable-draft-edns-cookies option to configure. Use it by setting the
edns_cookies extension to GETDNS_EXTENSION_TRUE.
* Pretty printing of lists with:
char *getdns_pretty_print_list(getdns_list *list)
* Output to json format with:
char * getdns_print_json_dict(const getdns_dict *some_dict, int pretty);
char * getdns_print_json_list(const getdns_list *some_list, int pretty);
* snprintf style versions of the dict, list and json print functions.
* Better random number generation with OpenBSD's arc4random
* 2015-01-16: Version 0.1.6 * 2015-01-16: Version 0.1.6
* Fix: linking against libev on FreeBSD * Fix: linking against libev on FreeBSD
* Fix: Let configure report problem on FreeBSD when configuring with * Fix: Let configure report problem on FreeBSD when configuring with

View File

@ -28,7 +28,7 @@
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
package = @PACKAGE_NAME@ package = @PACKAGE_NAME@
version = @PACKAGE_VERSION@ version = @PACKAGE_VERSION@@RELEASE_CANDIDATE@
tarname = @PACKAGE_TARNAME@ tarname = @PACKAGE_TARNAME@
PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_TARNAME = @PACKAGE_TARNAME@
distdir = $(tarname)-$(version) distdir = $(tarname)-$(version)

28
configure vendored
View File

@ -1,6 +1,6 @@
#! /bin/sh #! /bin/sh
# Guess values for system-dependent variables and create Makefiles. # Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for getdns 0.1.6. # Generated by GNU Autoconf 2.69 for getdns 0.1.7.
# #
# Report bugs to <stub-resolver@verisignlabs.com>. # Report bugs to <stub-resolver@verisignlabs.com>.
# #
@ -590,8 +590,8 @@ MAKEFLAGS=
# Identity of this package. # Identity of this package.
PACKAGE_NAME='getdns' PACKAGE_NAME='getdns'
PACKAGE_TARNAME='getdns' PACKAGE_TARNAME='getdns'
PACKAGE_VERSION='0.1.6' PACKAGE_VERSION='0.1.7'
PACKAGE_STRING='getdns 0.1.6' PACKAGE_STRING='getdns 0.1.7'
PACKAGE_BUGREPORT='stub-resolver@verisignlabs.com' PACKAGE_BUGREPORT='stub-resolver@verisignlabs.com'
PACKAGE_URL='http://getdnsapi.net' PACKAGE_URL='http://getdnsapi.net'
@ -705,6 +705,7 @@ CFLAGS
CC CC
GETDNS_LIBVERSION GETDNS_LIBVERSION
GETDNS_COMPILATION_COMMENT GETDNS_COMPILATION_COMMENT
RELEASE_CANDIDATE
target_alias target_alias
host_alias host_alias
build_alias build_alias
@ -1321,7 +1322,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing. # Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh. # This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF cat <<_ACEOF
\`configure' configures getdns 0.1.6 to adapt to many kinds of systems. \`configure' configures getdns 0.1.7 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]... Usage: $0 [OPTION]... [VAR=VALUE]...
@ -1386,7 +1387,7 @@ fi
if test -n "$ac_init_help"; then if test -n "$ac_init_help"; then
case $ac_init_help in case $ac_init_help in
short | recursive ) echo "Configuration of getdns 0.1.6:";; short | recursive ) echo "Configuration of getdns 0.1.7:";;
esac esac
cat <<\_ACEOF cat <<\_ACEOF
@ -1517,7 +1518,7 @@ fi
test -n "$ac_init_help" && exit $ac_status test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then if $ac_init_version; then
cat <<\_ACEOF cat <<\_ACEOF
getdns configure 0.1.6 getdns configure 0.1.7
generated by GNU Autoconf 2.69 generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc. Copyright (C) 2012 Free Software Foundation, Inc.
@ -2006,7 +2007,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake. running configure, to aid debugging if configure makes a mistake.
It was created by getdns $as_me 0.1.6, which was It was created by getdns $as_me 0.1.7, which was
generated by GNU Autoconf 2.69. Invocation command line was generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@ $ $0 $@
@ -2354,6 +2355,8 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $
ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_compiler_gnu=$ac_cv_c_compiler_gnu
RELEASE_CANDIDATE=rc1
# Set current date from system if not set # Set current date from system if not set
@ -2364,7 +2367,7 @@ else
CURRENT_DATE="`date -u +%Y-%m-%dT%H:%M:%SZ`" CURRENT_DATE="`date -u +%Y-%m-%dT%H:%M:%SZ`"
fi fi
GETDNS_COMPILATION_COMMENT="getdns 0.1.6 configured on $CURRENT_DATE for the January 2015 version of the API" GETDNS_COMPILATION_COMMENT="getdns 0.1.7 configured on $CURRENT_DATE for the January 2015 version of the API"
# Library version # Library version
# --------------- # ---------------
@ -2383,9 +2386,10 @@ GETDNS_COMPILATION_COMMENT="getdns 0.1.6 configured on $CURRENT_DATE for the Jan
# #
# getdns-0.1.4 had libversion 0:0:0 # getdns-0.1.4 had libversion 0:0:0
# getdns-0.1.5 had libversion 1:0:0 # getdns-0.1.5 had libversion 1:0:0
# getdns-0.1.6 has libversion 1:1:1 # getdns-0.1.6 had libversion 1:1:1
# getdns-0.1.7 will have libversion 1:2:2
# #
GETDNS_LIBVERSION=1:1:0 GETDNS_LIBVERSION=1:2:2
@ -14263,7 +14267,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their # report actual input values of CONFIG_FILES etc. instead of their
# values after options handling. # values after options handling.
ac_log=" ac_log="
This file was extended by getdns $as_me 0.1.6, which was This file was extended by getdns $as_me 0.1.7, which was
generated by GNU Autoconf 2.69. Invocation command line was generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES CONFIG_FILES = $CONFIG_FILES
@ -14330,7 +14334,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\ ac_cs_version="\\
getdns config.status 0.1.6 getdns config.status 0.1.7
configured by $0, generated by GNU Autoconf 2.69, configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\" with options \\"\$ac_cs_config\\"

View File

@ -31,7 +31,8 @@
AC_PREREQ([2.56]) AC_PREREQ([2.56])
AC_INIT([getdns], [0.1.6], [stub-resolver@verisignlabs.com], [], [http://getdnsapi.net]) AC_INIT([getdns], [0.1.7], [stub-resolver@verisignlabs.com], [], [http://getdnsapi.net])
AC_SUBST(RELEASE_CANDIDATE, [rc1])
# 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],
@ -58,9 +59,10 @@ GETDNS_COMPILATION_COMMENT="AC_PACKAGE_STRING configured on $CURRENT_DATE for th
# #
# getdns-0.1.4 had libversion 0:0:0 # getdns-0.1.4 had libversion 0:0:0
# getdns-0.1.5 had libversion 1:0:0 # getdns-0.1.5 had libversion 1:0:0
# getdns-0.1.6 has libversion 1:1:1 # getdns-0.1.6 had libversion 1:1:1
# getdns-0.1.7 will have libversion 1:2:2
# #
GETDNS_LIBVERSION=1:1:0 GETDNS_LIBVERSION=1:2:2
AC_SUBST(GETDNS_COMPILATION_COMMENT) AC_SUBST(GETDNS_COMPILATION_COMMENT)
AC_SUBST(GETDNS_LIBVERSION) AC_SUBST(GETDNS_LIBVERSION)