From: Ian Jackson Date: Thu, 11 Jun 2020 14:47:17 +0000 (+0100) Subject: changelog: Document changes in 1.6.0 and finalise version number X-Git-Tag: adns-1.6.0^0 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=adns.git;a=commitdiff_plain changelog: Document changes in 1.6.0 and finalise version number Signed-off-by: Ian Jackson --- diff --git a/Makefile.in b/Makefile.in index 0889ad9..976a159 100644 --- a/Makefile.in +++ b/Makefile.in @@ -24,7 +24,7 @@ include ./common.make # Remember to change ADNS_VERSION_STRING in client/client.h too, and # possibly library soname (MAJOR and MINOR in common.make.in). -DISTVERSION= 1.5.2 +DISTVERSION= 1.6.0 srcdir= @srcdir@ VPATH= @srcdir@ diff --git a/changelog b/changelog index a0cfb25..aa09bd0 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,38 @@ +adns (1.6.0) UPSTREAM; urgency=medium + + Bugfixes: + * adnshost: Support --reverse in -f mode input stream + * timeout robustness against clock skew: track query start time and + duration. Clock instability may now only cause spurious timeouts + rather than indefinite hangs or even assertion failures. + + New features: + * adnshost: Offer ability to set adns checkc flags + * adnslogres: Honour --checkc-freq (if it comes first) + * adnsresfilter: Honour --checkc-freq and --checkc-entex + * time handling: Support use of CLOCK_MONOTONIC via an init flag. + * adns_str* etc.: Improve robustness; more allowable inputs values. + + Build system improvements: + * clean targets: Delete $(TARGETS) too! + * Remove all m4 output files from the distributed source tree. + * Support DESTDIR=/some/absolute/path on `make install'. + * Provide autogen.sh. + * Rerun autoheader and autoconf (2.69). + + Internal changes: + * adnshost: adh-opts.c: Whitespace adjustments to option table + + Tests: + * New tests for fixes in 1.5.3. + * Fixes to test harness to avoid false positives during fuzzing. + * Other changes to support use with AFL. + * Many supporting improvements and refactorings. + * Fix skipped tests ($$ reference in Makefile) + + + -- Ian Jackson Thu, 11 Jun 2020 15:49:39 +0100 + adns (1.5.2) UPSTREAM; urgency=medium * Important security fixes: diff --git a/client/client.h b/client/client.h index 5d9c271..908d54a 100644 --- a/client/client.h +++ b/client/client.h @@ -27,7 +27,7 @@ #ifndef CLIENT_H_INCLUDED #define CLIENT_H_INCLUDED -#define ADNS_VERSION_STRING "1.5.2" +#define ADNS_VERSION_STRING "1.6.0" #define COPYRIGHT_MESSAGE \ "Copyright (C) 1997-2000,2003,2006,2014-2016,2020 Ian Jackson\n" \ diff --git a/common.make.in b/common.make.in index 5e0e80b..d5188d9 100644 --- a/common.make.in +++ b/common.make.in @@ -22,7 +22,7 @@ # along with this program; if not, write to the Free Software Foundation. MAJOR= 1 -MINOR= 5 +MINOR= 6 SHLIBFILE= @SHLIBFILE@ SHLIBSONAME= @SHLIBSONAME@ SHLIBFORLINK= @SHLIBFORLINK@