From 24b0fe7ad4d67b50f1c6f0084b53788e8ef15655 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jerry=20Lundstr=C3=B6m?= Date: Wed, 4 Sep 2024 14:48:54 +0200 Subject: [PATCH] Release 1.7.3 --- .gitignore | 1 + CHANGES | 11 +++++++++++ configure.ac | 2 +- debian/changelog | 13 +++++++++++++ rpm/packetq.spec | 10 +++++++++- 5 files changed, 35 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 1f394ce..e7982cb 100644 --- a/.gitignore +++ b/.gitignore @@ -63,6 +63,7 @@ libtool src/config.h src/stamp-h1 build +configure~ # Project specific files src/packetq diff --git a/CHANGES b/CHANGES index d01d2f0..57a932c 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,14 @@ +2024-09-04 Jerry Lundström + + Release 1.7.3 + + This patch release fixes memory alignment issues and the handling of + TCP segments. Many thanks to Ray Bellis (ISC) for reporting this and + helping greatly with fixing it! + + d8a06a3 C++11 + 8c99466 Memory align, TCP assemble + 2024-08-29 Jerry Lundström Release 1.7.2 diff --git a/configure.ac b/configure.ac index 8be7ff8..b2fc9ed 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.7.2], [admin@dns-oarc.net], [packetq], [https://github.com/DNS-OARC/packetq/issues]) +AC_INIT([packetq], [1.7.3], [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 4af6245..b2e70b2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +packetq (1.7.3-1~unstable+1) unstable; urgency=low + + * Release 1.7.3 + + This patch release fixes memory alignment issues and the handling of + TCP segments. Many thanks to Ray Bellis (ISC) for reporting this and + helping greatly with fixing it! + + d8a06a3 C++11 + 8c99466 Memory align, TCP assemble + + -- Jerry Lundström Wed, 04 Sep 2024 14:46:27 +0200 + packetq (1.7.2-1~unstable+1) unstable; urgency=low * Release 1.7.2 diff --git a/rpm/packetq.spec b/rpm/packetq.spec index e03818d..c26e35e 100644 --- a/rpm/packetq.spec +++ b/rpm/packetq.spec @@ -1,5 +1,5 @@ Name: packetq -Version: 1.7.2 +Version: 1.7.3 Release: 1%{?dist} Summary: A tool that provides a basic SQL-frontend to PCAP-files Group: Productivity/Networking/DNS/Utilities @@ -56,6 +56,14 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Sep 04 2024 Jerry Lundström 1.7.3-1 +- Release 1.7.3 + * This patch release fixes memory alignment issues and the handling of + TCP segments. Many thanks to Ray Bellis (ISC) for reporting this and + helping greatly with fixing it! + * Commits: + d8a06a3 C++11 + 8c99466 Memory align, TCP assemble * Thu Aug 29 2024 Jerry Lundström 1.7.2-1 - Release 1.7.2 * This patch release fixes various issues reported by CI/code analysis