Release v1.3.0

This commit is contained in:
Pim van Pelt
2025-07-07 01:11:49 +02:00
parent 53c7bca43e
commit 6c1993282c
2 changed files with 9 additions and 1 deletions

8
debian/changelog vendored
View File

@ -1,3 +1,11 @@
ipng-router-backup (1.3.0) stable; urgency=low
* Add --parallel flag for concurrent device processing (default: 10)
* Implement worker pool pattern for much faster multi-device backups
* Maintain atomic file operations and error handling in parallel mode
-- Pim van Pelt <pim@ipng.ch> Sun, 07 Jul 2025 23:00:00 +0100
ipng-router-backup (1.2.4) stable; urgency=low ipng-router-backup (1.2.4) stable; urgency=low
* Add regex exclude patterns to filter unwanted output lines per device type * Add regex exclude patterns to filter unwanted output lines per device type

View File

@ -12,7 +12,7 @@ import (
"github.com/spf13/cobra" "github.com/spf13/cobra"
) )
const Version = "1.2.4" const Version = "1.3.0"
// Config and SSH types are now in separate packages // Config and SSH types are now in separate packages