diff --git a/Changes b/Changes index bb4f1020..90a2213a 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,25 @@ Release history for Zonemaster component Zonemaster-CLI +v6.0.0 2023-06-21 (public release version) + + [Breaking changes] + - Adds display of Zonemaster::LDNS and libldns versions + when --version has been selected (#306) + + [Features] + - Updates various report options to zonemaster-cli script + (#318, #337, #309, #308) + - Adds options "--sourceaddr4" and "--sourceaddr6" to + zonemaster-cli script (#317) + + [Fixes] + - Updates translations (#338, #328, #329, #331, #327, #322) + - Updates documentation in zonemaster-cli script (#336) + - Fixes table layout in zonemaster-cli output (#335) + - Removes documentation moved to the zonemaster/zonemaster + repository (#332) + - Removes some untranslatable characters from msgids (#307) + v5.0.2 2023-03-01 (public fix version) diff --git a/Makefile.PL b/Makefile.PL index dd69fb13..b5afbb84 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -23,8 +23,8 @@ requires( 'MooseX::Getopt' => 0, 'Text::Reflow' => 0, 'Try::Tiny' => 0, - 'Zonemaster::Engine' => 4.006002, - 'Zonemaster::LDNS' => 3.001000, + 'Zonemaster::LDNS' => 3.002000, # v3.2.0 + 'Zonemaster::Engine' => 4.007000, # v4.7.0 ); # Make all platforms include inc/Module/Install/External.pm diff --git a/lib/Zonemaster/CLI.pm b/lib/Zonemaster/CLI.pm index 88f26b7d..a789910f 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( "v5.0.2" ); +use version; our $VERSION = version->declare( "v6.0.0" ); use Locale::TextDomain 'Zonemaster-CLI'; use Moose;