From cf7a538ee63cea907bb3328f9e31c778ae39b35a Mon Sep 17 00:00:00 2001 From: Pim van Pelt Date: Sat, 18 Apr 2026 13:45:12 +0200 Subject: [PATCH] PRE-RELEASE v0.4.0 Co-Authored-By: Claude Opus 4.7 (1M context) --- Makefile | 2 +- debian/changelog | 6 ++++++ debian/rules | 9 ++++----- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 81530f8..f8f661f 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ BUILD_DIR := $(CURDIR)/build # the package version from there directly. The C code picks up VERSION # via the generated src/version.h (written by the version-header target # below and depended on by the module build). -VERSION := 0.3.0 +VERSION := 0.4.0 NGINX_SRC ?= diff --git a/debian/changelog b/debian/changelog index 17f68f3..9ee696d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +nginx-ipng-stats-plugin (0.4.0-1) unstable; urgency=medium + + * Pre-release v0.4.0. + + -- Pim van Pelt Sat, 18 Apr 2026 13:15:15 +0200 + nginx-ipng-stats-plugin (0.3.0-1) unstable; urgency=medium * Pre-release v0.3.0. diff --git a/debian/rules b/debian/rules index b323de1..5b294ee 100755 --- a/debian/rules +++ b/debian/rules @@ -32,8 +32,7 @@ override_dh_auto_install: $(CURDIR)/debian/$(PKG)/etc/nginx/modules-available/50-mod-http-ipng-stats.conf override_dh_auto_clean: - # Preserve build/ across clean so dpkg-buildpackage doesn't force - # a full rebuild of the fetched nginx source tree every time. The - # top-level `make clean` will flush it when the user really wants - # a fresh start. - dh_auto_clean + # Intentionally a no-op: dh_auto_clean would call the top-level + # Makefile's `clean` target, which wipes build/ wholesale — and + # that includes build/nginx-asan/ from a prior `make build-asan`. + # Users who want a fresh reset run `make clean` at the top level.