diff --git a/.travis.yml b/.travis.yml index c1c0e9ec..72b7378e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,10 +5,10 @@ perl: - "5.24" - "5.22" - "5.20" - - "5.18" - "5.16" before_install: - eval $(curl https://travis-perl.github.io/init) --auto - local-lib + - git clone --depth=1 --branch=develop https://github.com/zonemaster/zonemaster-ldns.git - git clone --depth=1 --branch=develop https://github.com/zonemaster/zonemaster-engine.git - - cpan-install --deps ./zonemaster-engine + - cpan-install --deps Devel::CheckLib Module::Install Module::Install::XSUtil ./zonemaster-ldns ./zonemaster-engine diff --git a/Changes b/Changes index c1c1824d..7e869094 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,16 @@ Release history for Zonemaster component Zonemaster-CLI +v2.0.1 2019-05-22 (public release version) + + [Status] + - This a public release fully tested before release. This version + will be available on CPAN. + + [Fixes] + - Updated installation instructions for FreeBSD (#101) + - Dropped support for Ubuntu 14.04 (#99) + - Made Travis use the equivalent branch in Zonemaster-Engine (#98) + v2.0.0 2019-01-25 (pre-release version) diff --git a/docs/Installation.md b/docs/Installation.md index ae1a0a21..3d4edfa8 100644 --- a/docs/Installation.md +++ b/docs/Installation.md @@ -19,6 +19,9 @@ Zonemaster::Engine installation]. > install from your operating system distribution (rather than CPAN). > We recommend following the Zonemaster::Engine installation instruction. +Prerequisite for FreeBSD is that the package system is upadated and activated +(see the FreeBSD section of [Zonemaster::Engine installation]). + For details on supported versions of Perl and operating system for Zonemaster::CLI, see the [declaration of prerequisites]. diff --git a/lib/Zonemaster/CLI.pm b/lib/Zonemaster/CLI.pm index f8f412db..dfc8f86c 100755 --- a/lib/Zonemaster/CLI.pm +++ b/lib/Zonemaster/CLI.pm @@ -6,7 +6,7 @@ extends 'Zonemaster::Engine::Exception'; # The actual interesting module. package Zonemaster::CLI; -use version; our $VERSION = version->declare("v2.0.0"); +use version; our $VERSION = version->declare("v2.0.1"); use 5.014002; use warnings;