diff --git a/Changes b/Changes index abd1dafb4..c2b0e29b3 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,35 @@ Release history for Zonemaster component Zonemaster-Engine +v6.0.0 2024-07-01 (part of Zonemaster v2024.1 release) + + [Release information] + - Translations have not been fully updated in this release. They will + be updated in an upcoming release. + + [Breaking change] + - Removes planned deprecated 'resolver.source' profile property. + Breaks custom profiles using this property. Use 'resolver.source4' + and 'resolver.source6' instead. (#1343) + - Using 'profile.json' that comes with the Zonemaster::Engine + installation as a template for custom profile is no longer supported. + For the new supported way of extracting the default profile, see + https://github.com/zonemaster/zonemaster/blob/master/docs/public/configuration/profiles.md#default-profile (#1339) + + [Features] + - Makes it possible to run single testcase via test_zone() (#1312) + - Updates Basic01 implementation (#1357) + + [Fixes] + - Makes syntax04 take zone name instead of NS name (#1322, #1369) + - Removes the code dependency on Moose (#1319) + - Fixes Zonemaster::Engine::Translator’s instance() method (#1347) + - Fixes polymorphism in Translator (#1346) + - Adds minor changes to Zone11 msgids (#1348) + - Update minimum Perl version to 5.16.0 and add missing 'warnings' (#1342) + - Fixes undef eq comparison (#1363) + + v5.0.0 2024-03-18 (public release version) [Release information] diff --git a/Makefile.PL b/Makefile.PL index 98f5d3083..6f8b9af0c 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -33,7 +33,7 @@ requires 'Net::IP::XS' => 0.21; requires 'Readonly' => 0; requires 'Text::CSV' => 0; requires 'YAML::XS' => 0; -requires 'Zonemaster::LDNS' => 4.000000; # For v4.0.0 +requires 'Zonemaster::LDNS' => 4.000002; # For v4.0.2 test_requires 'Locale::PO' => 0; test_requires 'Pod::Coverage' => 0; diff --git a/lib/Zonemaster/Engine.pm b/lib/Zonemaster/Engine.pm index 57841dca5..4ad526bec 100644 --- a/lib/Zonemaster/Engine.pm +++ b/lib/Zonemaster/Engine.pm @@ -3,7 +3,7 @@ package Zonemaster::Engine; use v5.16.0; use warnings; -use version; our $VERSION = version->declare("v5.0.0"); +use version; our $VERSION = version->declare("v6.0.0"); BEGIN { # Locale::TextDomain (<= 1.20) doesn't know about File::ShareDir so give a helping hand.