diff --git a/Changes b/Changes index 97f0e6a..14577db 100644 --- a/Changes +++ b/Changes @@ -1,25 +1,32 @@ Release history for Zonemaster component Zonemaster-CLI +v8.0.2 2026-06-29 (part of Zonemaster v2026.1 release) + + [Fixes] + - Updates Swedish translation (#454) + - Creates a fix for Net-IDN-Encode in Dockerfile (#459) + + v8.0.1 2025-12-17 (part of Zonemaster v2025.2 release) [Fixes] -- This version has no changes besides requiring updated - Zonemaster-LDNS and Zonemaster-Engine. + - This version has no changes besides requiring updated + Zonemaster-LDNS and Zonemaster-Engine. v8.0.0 2025-06-26 (part of Zonemaster v2025.1 release) [Breaking changes] -- Makes the --test option more flexible #359 + - Makes the --test option more flexible (#359) [Features] -- Expands the --nstimes option #421 -- Expands the --count option #424 + - Expands the --nstimes option (#421) + - Expands the --count option (#424) [Fixes] -- Updates translations #444, #445 -- Slows down the spinner a bit #419 + - Updates translations (#444, #445) + - Slows down the spinner a bit (#419) v7.2.0 2025-03-04 (part of Zonemaster v2024.2.1 release) @@ -29,12 +36,12 @@ v7.2.0 2025-03-04 (part of Zonemaster v2024.2.1 release) be updated in an upcoming extra release. [Features] -- Adds translation to Slovenian language (#384) + - Adds translation to Slovenian language (#384) [Fixes] -- Updates translations (#418, #425, #415, #422, #414) -- Minor code cleanup (#420) -- Fixes to make early messages not to be lost (#416) + - Updates translations (#418, #425, #415, #422, #414) + - Minor code cleanup (#420) + - Fixes to make early messages not to be lost (#416) v7.1.0 2024-12-09 (part of Zonemaster v2024.2 release) diff --git a/Makefile.PL b/Makefile.PL index 6ff527d..1cd2069 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -23,8 +23,8 @@ requires( 'JSON::XS' => 0, 'Locale::TextDomain' => 1.23, 'Try::Tiny' => 0, - 'Zonemaster::LDNS' => 5.000001, # v5.0.1 - 'Zonemaster::Engine' => 8.001000, # v8.1.0 + 'Zonemaster::LDNS' => 5.001000, # v5.1.0 + 'Zonemaster::Engine' => 9.000000, # v9.0.0 ); test_requires( diff --git a/lib/Zonemaster/CLI.pm b/lib/Zonemaster/CLI.pm index 86c67a2..fc06df5 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( "v8.0.1" ); +use version; our $VERSION = version->declare( "v8.0.2" ); use Locale::TextDomain 'Zonemaster-CLI';