diff --git a/CHANGES b/CHANGES index f282eb5f..3491c5b4 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,19 @@ +2020-05-07 Jerry Lundström + + Release 2.10.0 + + This release adds new configuration options to `dnstap_unixsock` to + control ownership and permissions for the DNSTAP socket file. + + Other fixes: + - Unlink the DNSTAP socket file if an error during initialization occur + - Do hard exit in forks to not run `atexit()` (which will unlink the + DNSTAP socket file) + + Commits: + 9d1d49a fork + 733b286 DNSTAP socket + 2020-04-02 Jerry Lundström Release 2.9.1 diff --git a/configure.ac b/configure.ac index d8449494..b1cd441c 100644 --- a/configure.ac +++ b/configure.ac @@ -33,7 +33,7 @@ # POSSIBILITY OF SUCH DAMAGE. AC_PREREQ(2.61) -AC_INIT([DSC], [2.9.1], [dsc@dns-oarc.net], [dsc], [https://github.com/DNS-OARC/dsc/issues]) +AC_INIT([DSC], [2.10.0], [dsc@dns-oarc.net], [dsc], [https://github.com/DNS-OARC/dsc/issues]) AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects]) AC_CONFIG_SRCDIR([src/md_array.c]) AC_CONFIG_HEADER([src/config.h]) diff --git a/debian/changelog b/debian/changelog index ae3cd582..adcbd8be 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,21 @@ +dsc (2.10.0-1~unstable+1) unstable; urgency=low + + * Release 2.10.0 + + This release adds new configuration options to `dnstap_unixsock` to + control ownership and permissions for the DNSTAP socket file. + + Other fixes: + - Unlink the DNSTAP socket file if an error during initialization occur + - Do hard exit in forks to not run `atexit()` (which will unlink the + DNSTAP socket file) + + Commits: + 9d1d49a fork + 733b286 DNSTAP socket + + -- Jerry Lundström Thu, 07 May 2020 11:18:16 +0200 + dsc (2.9.1-1~unstable+1) unstable; urgency=low * Release 2.9.1 diff --git a/rpm/dsc.spec b/rpm/dsc.spec index 2ee808b1..a8138654 100644 --- a/rpm/dsc.spec +++ b/rpm/dsc.spec @@ -1,5 +1,5 @@ Name: dsc -Version: 2.9.1 +Version: 2.10.0 Release: 1%{?dist} Summary: DNS Statistics Collector Group: Productivity/Networking/DNS/Utilities @@ -65,6 +65,17 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu May 07 2020 Jerry Lundström 2.10.0-1 +- Release 2.10.0 + * This release adds new configuration options to `dnstap_unixsock` to + control ownership and permissions for the DNSTAP socket file. + * Other fixes: + - Unlink the DNSTAP socket file if an error during initialization occur + - Do hard exit in forks to not run `atexit()` (which will unlink the + DNSTAP socket file) + * Commits: + 9d1d49a fork + 733b286 DNSTAP socket * Thu Apr 02 2020 Jerry Lundström 2.9.1-1 - Release 2.9.1 * This release fixes a few bugs, removes a lot of the debug messages