From d0e3f35e77a7e2075c56c646eb138e8dfb32b43c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Holger=20Wei=C3=9F?= Date: Tue, 19 Mar 2019 21:08:33 +0100 Subject: [PATCH] NSCA-ng 1.6 --- NEWS | 9 +++++++++ configure.ac | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index d0fc58a..a7cdb51 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,15 @@ NSCA-ng Release History ======================= +Changes in Release 1.6 (2019-03-19) +----------------------------------- + +- Work around TLSv1.3 PSK bug in (at least) OpenSSL 1.1.1b. +- Fix static linking against recent OpenSSL versions. +- Update our copy of libev from version 4.22 to version 4.25. The new + release provides a few platform compatibilty fixes and small enhancements. +- Apply a few minor improvements. + Changes in Release 1.5 (2016-11-15) ----------------------------------- diff --git a/configure.ac b/configure.ac index 4c1ed87..a106782 100644 --- a/configure.ac +++ b/configure.ac @@ -27,7 +27,7 @@ # Autotools initialization. AC_PREREQ([2.60]) dnl But Autoconf 2.63 is required for AC_INIT's URL parameter. AC_INIT([NSCA-ng], - [1.5], + [1.6], [developers@nsca-ng.org], [nsca-ng], [http://www.nsca-ng.org/]) @@ -42,7 +42,7 @@ AM_MAINTAINER_MODE([enable]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES]) dnl Automake 1.11 added this. # Set the release date. -RELEASE_DATE='November 15, 2016' +RELEASE_DATE='March 19, 2019' AC_SUBST([RELEASE_DATE])