From 533f03912717d36b8559cbcedd5389561b7127dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20P=C3=A4iv=C3=A4rinta?= Date: Thu, 7 Feb 2019 18:06:16 +0100 Subject: [PATCH 1/5] Update Travis config Install Zonemaster::LDNS from develop branch to provide for the develop branch of Zonemaster::Engine. Also provide configure-time-deps for Zonemaster::LDNS. --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c1c0e9ec..b86bdc61 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,5 +10,6 @@ perl: 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 From 3631869114d05c6a8a8b2839d0c27c9fc3403c0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20P=C3=A4iv=C3=A4rinta?= Date: Mon, 8 Apr 2019 10:35:14 +0200 Subject: [PATCH 2/5] Dropped support for Ubuntu 14.04 --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b86bdc61..72b7378e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,6 @@ perl: - "5.24" - "5.22" - "5.20" - - "5.18" - "5.16" before_install: - eval $(curl https://travis-perl.github.io/init) --auto From 4f8a4fcd0a24f3599de7513f78463197a6c9757b Mon Sep 17 00:00:00 2001 From: Mats Dufberg Date: Sat, 18 May 2019 21:36:30 +0200 Subject: [PATCH 3/5] Added note on FreeBSD package system --- docs/Installation.md | 3 +++ 1 file changed, 3 insertions(+) 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]. From a30bdee93b30f2b7efeb5bc5f779bceec78188ed Mon Sep 17 00:00:00 2001 From: Mats Dufberg Date: Wed, 22 May 2019 18:06:55 +0200 Subject: [PATCH 4/5] Updates for release v2.0.1 --- Changes | 11 +++++++++++ 1 file changed, 11 insertions(+) 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) From c89bc2b45d9744d8b1dd1ce392c0ae98917fb278 Mon Sep 17 00:00:00 2001 From: Mats Dufberg Date: Wed, 22 May 2019 18:07:35 +0200 Subject: [PATCH 5/5] Updates for release v2.0.1 --- lib/Zonemaster/CLI.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;