diff --git a/debian/changelog b/debian/changelog index 85472ff..6e8c7d5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +ipng-router-backup (1.3.1) stable; urgency=low + + * Fix golangci-lint issues, replace deprecated io/ioutil + * Add SSH key error messages with hostname prefix + * Independently validate sshkey, agent auth and password methods + + -- Pim van Pelt Sun, 07 Jul 2025 23:30:00 +0100 + ipng-router-backup (1.3.0) stable; urgency=low * Add --parallel flag for concurrent device processing (default: 10) diff --git a/src/main.go b/src/main.go index ba195b0..5f17acf 100644 --- a/src/main.go +++ b/src/main.go @@ -12,7 +12,7 @@ import ( "github.com/spf13/cobra" ) -const Version = "1.3.0" +const Version = "1.3.1" func processDevice(hostname string, deviceConfig Device, commands []string, excludePatterns []string, password, keyFile string, port int, outputDir string) bool { // Create backup instance