diff options
author | Ondřej Surý <ondrej@sury.org> | 2017-06-07 14:46:11 +0200 |
---|---|---|
committer | Ondřej Surý <ondrej@sury.org> | 2017-06-07 15:15:06 +0200 |
commit | 39623a4f98d02b4a3dd6ae6d0191588045a9c6ea (patch) | |
tree | 293eddb98b057a1937d099c6260d37ad9b17a7b1 | |
parent | Use custom version for VersionAction to print --version output to stdout (diff) | |
download | knot-39623a4f98d02b4a3dd6ae6d0191588045a9c6ea.tar.xz knot-39623a4f98d02b4a3dd6ae6d0191588045a9c6ea.zip |
Update to 2.5.1 release
-rw-r--r-- | NEWS | 11 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 12 insertions, 1 deletions
@@ -1,3 +1,14 @@ +Knot DNS 2.5.1 (2017-06-07) +=========================== + +Bugfixes: +--------- + - pykeymgr no longer crash on empty json files in the KASP DB directory + - pykeymgr no longer imports keys in the "removed" state + - Imported keys in the "removed" state no longer makes knotd to crash + - Including an empty configuration directory no longer makes knotd to crash + - pykeymgr is distributed and installed to the distribution tarball + Knot DNS 2.5.0 (2017-06-05) =========================== diff --git a/configure.ac b/configure.ac index fc595841c..476ad54da 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ AC_PREREQ([2.60]) m4_define([knot_VERSION_MAJOR],2)dnl m4_define([knot_VERSION_MINOR],5)dnl -m4_define([knot_VERSION_PATCH],0)dnl +m4_define([knot_VERSION_PATCH],1)dnl m4_define([knot_VERSION_EXTRA],)dnl m4_define([knot_PKG_VERSION],[knot_VERSION_MAJOR.knot_VERSION_MINOR.knot_VERSION_PATCH]knot_VERSION_EXTRA)dnl |