diff --git a/debian/changelog b/debian/changelog index 8fdf896..c20cf6f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +ipng-router-backup (1.2.0) stable; urgency=low + + * Add atomic file operations with .new suffix for backup reliability + * Add exit codes: 10 (some devices failed), 11 (all devices failed) + * Update manpage filename to ipng-router-backup.1 + + -- Pim van Pelt Sun, 07 Jul 2025 20:00:00 +0100 + ipng-router-backup (1.1.1) stable; urgency=low * Add 'address' field to device configuration for explicit IP/hostname override diff --git a/src/main.go b/src/main.go index a5b5cfa..9e5317f 100644 --- a/src/main.go +++ b/src/main.go @@ -10,7 +10,7 @@ import ( "github.com/spf13/cobra" ) -const Version = "1.1.1" +const Version = "1.2.0" // Config and SSH types are now in separate packages