diff --git a/debian/changelog b/debian/changelog index a07eaac..85472ff 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Sun, 07 Jul 2025 23:00:00 +0100 + ipng-router-backup (1.2.4) stable; urgency=low * Add regex exclude patterns to filter unwanted output lines per device type diff --git a/src/main.go b/src/main.go index 6e43161..f4fc107 100644 --- a/src/main.go +++ b/src/main.go @@ -12,7 +12,7 @@ import ( "github.com/spf13/cobra" ) -const Version = "1.2.4" +const Version = "1.3.0" // Config and SSH types are now in separate packages