From b90d33afe60c9666e8645faf1bce8c74a8ec0e23 Mon Sep 17 00:00:00 2001 From: Mats Dufberg Date: Wed, 25 Jun 2025 15:00:14 +0200 Subject: [PATCH 1/3] Updates for v2025.1 release --- Changes | 14 ++++++++++++++ Makefile.PL | 4 ++-- lib/Zonemaster/CLI.pm | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index d8edfb9..10c3dc1 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,20 @@ Release history for Zonemaster component Zonemaster-CLI +v8.0.0 2025-06-25 (part of Zonemaster v2025.1 release) + + [Breaking change] +- 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..f806cb5 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' => 4.001001, # v4.1.1 + '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'; From f015d3bdb64451b6b9cbdc938341c1c37aafcee0 Mon Sep 17 00:00:00 2001 From: Mats Dufberg Date: Wed, 25 Jun 2025 15:59:10 +0200 Subject: [PATCH 2/3] Matches version update of Zonemaster::LDNS --- Makefile.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.PL b/Makefile.PL index f806cb5..75e3e39 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -23,7 +23,7 @@ requires( 'JSON::XS' => 0, 'Locale::TextDomain' => 1.23, 'Try::Tiny' => 0, - 'Zonemaster::LDNS' => 4.001001, # v4.1.1 + 'Zonemaster::LDNS' => 5.000000, # v5.0.0 'Zonemaster::Engine' => 8.000000, # v8.0.0 ); From 33ce891363e6c3014d0a28c6016268ad7cb42b41 Mon Sep 17 00:00:00 2001 From: Mats Dufberg Date: Wed, 25 Jun 2025 18:08:29 +0200 Subject: [PATCH 3/3] Apply suggestions from review Co-authored-by: tgreenx <96772376+tgreenx@users.noreply.github.com> --- Changes | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Changes b/Changes index 10c3dc1..72d07c8 100644 --- a/Changes +++ b/Changes @@ -1,9 +1,9 @@ Release history for Zonemaster component Zonemaster-CLI -v8.0.0 2025-06-25 (part of Zonemaster v2025.1 release) +v8.0.0 2025-06-26 (part of Zonemaster v2025.1 release) - [Breaking change] + [Breaking changes] - Makes the --test option more flexible #359 [Features]