From 31e43ffc03b204ad69632d970973890460c63e3e Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Mon, 5 Mar 2018 08:13:18 +0000 Subject: [PATCH] Increase the version number to 1.6.6 --- ChangeLog.md | 12 ++++++++++-- configure.ac | 2 +- include/znc/version.h | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 26c23e36..b74461a7 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,14 @@ -# ZNC 1.6.5 (2017-03-12) +# ZNC 1.6.6 (2018-03-05) -## Fixes +* Fix use-after-free in `znc --makepem`. It was broken for a long time, but + started segfaulting only now. This is a useability fix, not a security fix, + because self-signed (or signed by a CA) certificates can be created + without using `--makepem`, and then combined into znc.pem. +* Fix build on Cygwin. + + + +# ZNC 1.6.5 (2017-03-12) * Fixed a regression of 1.6.4 which caused a crash in modperl/modpython. * Fixed the behavior of `verbose` command in the sasl module. diff --git a/configure.ac b/configure.ac index 9b4b85d3..25d6caea 100644 --- a/configure.ac +++ b/configure.ac @@ -7,7 +7,7 @@ AC_DEFUN([AC_PROG_CC], [m4_errprint(__file__:__line__[: Something is trying to u dnl Needed for AC_PATH_PROGS_FEATURE_CHECK which was added in 2.62 AC_PREREQ([2.62]) dnl Keep the version number in sync with version.h! -AC_INIT([znc], [1.6.6-rc1]) +AC_INIT([znc], [1.6.6]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_SRCDIR([src/znc.cpp]) AC_LANG([C++]) diff --git a/include/znc/version.h b/include/znc/version.h index c9ae5fb3..15714058 100644 --- a/include/znc/version.h +++ b/include/znc/version.h @@ -6,7 +6,7 @@ #define VERSION_MINOR 6 #define VERSION_PATCH 6 // This one is for display purpose -#define VERSION_STR "1.6.6-rc1" +#define VERSION_STR "1.6.6" // This one is for ZNCModInfo #define VERSION (VERSION_MAJOR + VERSION_MINOR / 10.0)