diff --git a/Changes b/Changes index d8edfb9..72d07c8 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,20 @@ Release history for Zonemaster component Zonemaster-CLI +v8.0.0 2025-06-26 (part of Zonemaster v2025.1 release) + + [Breaking changes] +- Makes the --test option more flexible #359 + + [Features] +- Expands the --nstimes option #421 +- Expands the --count option #424 + + [Fixes] +- Updates translations #444, #445 +- Slows down the spinner a bit #419 + + v7.2.0 2025-03-04 (part of Zonemaster v2024.2.1 release) [Release information] diff --git a/Makefile.PL b/Makefile.PL index e51c32f..75e3e39 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -23,8 +23,8 @@ requires( 'JSON::XS' => 0, 'Locale::TextDomain' => 1.23, 'Try::Tiny' => 0, - 'Zonemaster::LDNS' => 4.001000, # v4.1.0 - 'Zonemaster::Engine' => 7.001000, # v7.1.0 + 'Zonemaster::LDNS' => 5.000000, # v5.0.0 + 'Zonemaster::Engine' => 8.000000, # v8.0.0 ); test_requires( diff --git a/lib/Zonemaster/CLI.pm b/lib/Zonemaster/CLI.pm index 74ff67d..02eaa60 100644 --- a/lib/Zonemaster/CLI.pm +++ b/lib/Zonemaster/CLI.pm @@ -11,7 +11,7 @@ use v5.26; use warnings; -use version; our $VERSION = version->declare( "v7.2.0" ); +use version; our $VERSION = version->declare( "v8.0.0" ); use Locale::TextDomain 'Zonemaster-CLI';