diff --git a/CHANGES b/CHANGES index dd902c9..61f646b 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,17 @@ +2017-11-09 Jerry Lundström + + Release 1.4.1 + + Fixed an issue with the in-memory representation of DNS records which + was not initialized correctly and could cause the reuse of old data, + especially if the record was incomplete (such as FormErr). + + Commits: + + 6a790e6 Fix #61: Make sure variables are initialized + ed37b88 Update Murmur location + 5afb576 Update code format and move Murmur into it's own dir + 2017-07-11 Jerry Lundström Release 1.4.0 diff --git a/configure.ac b/configure.ac index ab01498..05941c7 100644 --- a/configure.ac +++ b/configure.ac @@ -18,7 +18,7 @@ # along with PacketQ. If not, see . AC_PREREQ(2.61) -AC_INIT([packetq], [1.4.0], [admin@dns-oarc.net], [packetq], [https://github.com/DNS-OARC/packetq/issues]) +AC_INIT([packetq], [1.4.1], [admin@dns-oarc.net], [packetq], [https://github.com/DNS-OARC/packetq/issues]) AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects]) AC_CONFIG_SRCDIR([src/packetq.cpp]) AC_CONFIG_HEADER([src/config.h]) diff --git a/debian/changelog b/debian/changelog index 32b3458..c5bd3b8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,19 @@ +packetq (1.4.1-1~unstable+1) unstable; urgency=low + + * Release 1.4.1 + + Fixed an issue with the in-memory representation of DNS records which + was not initialized correctly and could cause the reuse of old data, + especially if the record was incomplete (such as FormErr). + + Commits: + + 6a790e6 Fix #61: Make sure variables are initialized + ed37b88 Update Murmur location + 5afb576 Update code format and move Murmur into it's own dir + + -- Jerry Lundström Thu, 09 Nov 2017 07:52:35 +0100 + packetq (1.4.0-1~unstable+1) unstable; urgency=low * Release 1.4.0 diff --git a/rpm/packetq.spec b/rpm/packetq.spec index ab4f248..607d272 100644 --- a/rpm/packetq.spec +++ b/rpm/packetq.spec @@ -1,5 +1,5 @@ Name: packetq -Version: 1.4.0 +Version: 1.4.1 Release: 1%{?dist} Summary: A tool that provides a basic SQL-frontend to PCAP-files Group: Productivity/Networking/DNS/Utilities @@ -54,6 +54,15 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Nov 09 2017 Jerry Lundström 1.4.1-1 +- Release 1.4.1 + * Fixed an issue with the in-memory representation of DNS records which + was not initialized correctly and could cause the reuse of old data, + especially if the record was incomplete (such as FormErr). + * Commits: + 6a790e6 Fix #61: Make sure variables are initialized + ed37b88 Update Murmur location + 5afb576 Update code format and move Murmur into it's own dir * Tue Jul 11 2017 Jerry Lundström 1.4.0-1 - Release 1.4.0 * This release adds new fields for IP version and EDNS0 Client Subnet along