From 4260067ea8e1ed66d809ef5dc3a67ed0d938656b Mon Sep 17 00:00:00 2001 From: Pim van Pelt Date: Mon, 7 Jul 2025 00:52:43 +0200 Subject: [PATCH] Release v1.2.4 --- debian/changelog | 8 ++++++++ src/main.go | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index c26b009..a07eaac 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +ipng-router-backup (1.2.4) stable; urgency=low + + * Add regex exclude patterns to filter unwanted output lines per device type + * Prefix all log messages with hostname for better multi-device visibility + * Add exclude pattern support for RouterOS timestamp headers + + -- Pim van Pelt Sun, 07 Jul 2025 22:00:00 +0100 + ipng-router-backup (1.2.3) stable; urgency=low * For routeros, set mikrotik export to terse diff --git a/src/main.go b/src/main.go index 5c9128a..212f9b3 100644 --- a/src/main.go +++ b/src/main.go @@ -11,7 +11,7 @@ import ( "github.com/spf13/cobra" ) -const Version = "1.2.3" +const Version = "1.2.4" // Config and SSH types are now in separate packages