Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preparation for release v2023.1 (CLI) #339

Merged
merged 7 commits into from
Jun 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -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)

tgreenx marked this conversation as resolved.
Show resolved Hide resolved
[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)

Expand Down
4 changes: 2 additions & 2 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/Zonemaster/CLI.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down