diff --git a/NEWS b/NEWS index 0ab5e81b7171d6fa4aba47a70467fbb6f7667694..d40689e1ee23c212af74c05b46b81d2d9730686f 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,25 @@ +Knot DNS 1.6.5 (2015-09-01) +=========================== + +Bugfixes: +--------- + - Do not reload expired zones on 'knotc reload' and server startup + - Fix rare race-condition in event scheduling causing delayed event execution + - Fix skipping of non-authoritative nodes in NSEC proofs + - Fix TC flag setting in RRL slipped answers + - Disable domain name compression for root label for better compatibility + - Log via journald only when running under systemd + - Improve lookup of libsystemd build dependencies + - Fix compilation warnings in endian conversion functions on OpenBSD + +Features: +--------- + - Update persistent timers only on shutdown for better performance + - Add 'request-edns-option' config option to add custom EDNS0 option into + server initiated queries + - Allow specification of time units in 'max-conn-idle', 'max-conn-handshake', + 'max-conn-reply', and 'notify-timeout' config options + Knot DNS 1.6.4 (2015-06-16) =========================== diff --git a/configure.ac b/configure.ac index 62f05f76dde377c3e9bc8bfd89e42ee4645f5fb3..76b50f794bdffd2c7c78e84246478182cea451f9 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # -*- Autoconf -*- AC_PREREQ([2.60]) -AC_INIT([knot], [1.6.4], [knot-dns@labs.nic.cz]) +AC_INIT([knot], [1.6.5], [knot-dns@labs.nic.cz]) AM_INIT_AUTOMAKE([gnits subdir-objects dist-xz -Wall -Werror]) AM_SILENT_RULES([yes]) AC_CONFIG_SRCDIR([src/knot/main.c])