From 9a9f4e1f30d2b0c6664d2e0c291bc49d02add5a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89tienne=20Mollier?= Date: Mon, 21 Aug 2023 21:14:29 +0200 Subject: [PATCH 1/8] fix typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The typo leaked to the manual page, which in turn was caught by our linter. Signed-off-by: Étienne Mollier --- script/zonemaster-cli | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/zonemaster-cli b/script/zonemaster-cli index 00fbe6bf..b441e825 100755 --- a/script/zonemaster-cli +++ b/script/zonemaster-cli @@ -159,7 +159,7 @@ Provide information about a nameserver, for undelegated tests. The argument must be either: (i) a domain name and an IP address, separated by a single slash character (/), or (ii) only a domain name, in which case a A and AAAA records lookup for that name is done in the live global DNS tree (unless -overriden by --hints) and from which the results of that lookup will be used. +overridden by --hints) and from which the results of that lookup will be used. This switch can be given multiple times. As long as any of these switches are present, their aggregated content will be used as the From 206401210036d8b81c7709912fc5c791eb14a4bc Mon Sep 17 00:00:00 2001 From: Mats Dufberg Date: Thu, 31 Aug 2023 22:18:06 +0200 Subject: [PATCH 2/8] Updates Changes --- Changes | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Changes b/Changes index 30b4463f..36d32477 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,13 @@ Release history for Zonemaster component Zonemaster-CLI +v6.0.3 2023-09-05 (public fix version) + + [Fixes] + - This version contains no real changes. It has been created to + require a higher (fixed) version of Zonemaster-Engine. + + v6.0.2 2023-08-07 (public fix version) [Fixes] From f09aba21fd86a5bc70bbe9480e79808c25e8c820 Mon Sep 17 00:00:00 2001 From: Mats Dufberg Date: Fri, 1 Sep 2023 10:15:37 +0200 Subject: [PATCH 3/8] Updates dependencies --- Makefile.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.PL b/Makefile.PL index 059601db..ce0968fa 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -24,7 +24,7 @@ requires( 'Text::Reflow' => 0, 'Try::Tiny' => 0, 'Zonemaster::LDNS' => 3.002000, # v3.2.0 - 'Zonemaster::Engine' => 4.007002, # v4.7.2 + 'Zonemaster::Engine' => 4.007003, # v4.7.3 ); # Make all platforms include inc/Module/Install/External.pm From bbfee17b273e97603496e81348377973166f60bc Mon Sep 17 00:00:00 2001 From: Mats Dufberg Date: Fri, 1 Sep 2023 10:16:31 +0200 Subject: [PATCH 4/8] Sets new version for the release --- lib/Zonemaster/CLI.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Zonemaster/CLI.pm b/lib/Zonemaster/CLI.pm index af90a77a..4009f8d0 100755 --- a/lib/Zonemaster/CLI.pm +++ b/lib/Zonemaster/CLI.pm @@ -11,7 +11,7 @@ use 5.014002; use strict; use warnings; -use version; our $VERSION = version->declare( "v6.0.2" ); +use version; our $VERSION = version->declare( "v6.0.3" ); use Locale::TextDomain 'Zonemaster-CLI'; use Moose; From 2f291e34b21353b07cfb65363868916523a6dfd0 Mon Sep 17 00:00:00 2001 From: Mats Dufberg Date: Mon, 4 Sep 2023 22:36:44 +0200 Subject: [PATCH 5/8] Updates Changes after inclusion of #351 in the release --- Changes | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index 36d32477..7386efbd 100644 --- a/Changes +++ b/Changes @@ -4,9 +4,9 @@ Release history for Zonemaster component Zonemaster-CLI v6.0.3 2023-09-05 (public fix version) [Fixes] - - This version contains no real changes. It has been created to - require a higher (fixed) version of Zonemaster-Engine. - + - Fixes a spelling error (text) in the zonemaster-cli scrip (#351). + - This version contains no real code changes, but it require a higher + (fixed) version of Zonemaster-Engine. v6.0.2 2023-08-07 (public fix version) From 9bef04b70683448c3205f8e7f893ebfc7974284f Mon Sep 17 00:00:00 2001 From: Mats Dufberg Date: Mon, 4 Sep 2023 22:39:12 +0200 Subject: [PATCH 6/8] Apply suggestions from document review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Mattias Päivärinta --- Changes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Changes b/Changes index 7386efbd..8fa27f2e 100644 --- a/Changes +++ b/Changes @@ -4,7 +4,7 @@ Release history for Zonemaster component Zonemaster-CLI v6.0.3 2023-09-05 (public fix version) [Fixes] - - Fixes a spelling error (text) in the zonemaster-cli scrip (#351). + - Fixes a spelling error (text) in the zonemaster-cli script (#351). - This version contains no real code changes, but it require a higher (fixed) version of Zonemaster-Engine. From d7d6b815288650fc4021066ba67f12fc479abcf3 Mon Sep 17 00:00:00 2001 From: Mats Dufberg Date: Wed, 6 Sep 2023 22:26:15 +0200 Subject: [PATCH 7/8] Adjusts date --- Changes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Changes b/Changes index 8fa27f2e..004cdf56 100644 --- a/Changes +++ b/Changes @@ -1,7 +1,7 @@ Release history for Zonemaster component Zonemaster-CLI -v6.0.3 2023-09-05 (public fix version) +v6.0.3 2023-09-08 (public fix version) [Fixes] - Fixes a spelling error (text) in the zonemaster-cli script (#351). From b6c967cc630936acdaf67d63318f140347960f48 Mon Sep 17 00:00:00 2001 From: tgreenx <96772376+tgreenx@users.noreply.github.com> Date: Thu, 7 Sep 2023 09:38:25 +0200 Subject: [PATCH 8/8] Apply suggestions from code review --- Changes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Changes b/Changes index 004cdf56..c4ba9288 100644 --- a/Changes +++ b/Changes @@ -5,7 +5,7 @@ v6.0.3 2023-09-08 (public fix version) [Fixes] - Fixes a spelling error (text) in the zonemaster-cli script (#351). - - This version contains no real code changes, but it require a higher + - This version contains no real code changes, but it requires a higher (fixed) version of Zonemaster-Engine. v6.0.2 2023-08-07 (public fix version)