diff --git a/Changes b/Changes index 9a5eba5f..07121a9b 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,27 @@ Release history for Zonemaster component Zonemaster-Backend +v11.2.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. + - Migration of the database is required by this release to retain + consistency in results in the database. + + [Features] + - Fixes regression that caused Backend’s messages not to be + translated (#1166) + + [Fixes] + - Avoids double UTF-8 encoding in zmb (#1144) + - Makes job_status report proper percentages (#1150) + - Updates language in experimental RPC API parameters (#1155) + - Makes RPCAPI call Translator’s instance() method, instead of new() + (#1167) + - Bumps DBD::SQLite to 1.66 for Rocky Linux 8 (#1174) + + v11.1.1 2024-03-28 [Fixes] diff --git a/Makefile.PL b/Makefile.PL index 6a3603af..0b513eb0 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -35,8 +35,8 @@ requires 'Router::Simple::Declare' => 0, 'Starman' => 0, 'Try::Tiny' => 0.12, - 'Zonemaster::LDNS' => 4.000000, # v4.0.0 - 'Zonemaster::Engine' => 5.000000, # v5.0.0 + 'Zonemaster::LDNS' => 4.000002, # v4.0.2 + 'Zonemaster::Engine' => 6.000000, # v6.0.0 ; test_requires 'DBD::SQLite' => 1.66; diff --git a/lib/Zonemaster/Backend.pm b/lib/Zonemaster/Backend.pm index 6af0a4a3..18d4ad44 100644 --- a/lib/Zonemaster/Backend.pm +++ b/lib/Zonemaster/Backend.pm @@ -1,6 +1,6 @@ package Zonemaster::Backend; -our $VERSION = '11.1.1'; +our $VERSION = '11.2.0'; use strict; use warnings;