From 186ff7489936c05d691cccb03a92b59304efb827 Mon Sep 17 00:00:00 2001 From: "H.Merijn Brand" Date: Thu, 25 Sep 2008 08:19:08 +0200 Subject: [PATCH] Perl 5.6 is a minimal requirement for 'use warnings' --- ChangeLog | 1 + Makefile.PL | 2 +- README | 3 +-- sandbox/genMETA.pl | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5eff796..d14517e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ 2008-09-25 0.11 - H.Merijn Brand * PerlIO is only available in 5.8 and up + * Perl 5.6 is a minimal requirement for 'use warnings' 2008-09-24 0.10 - H.Merijn Brand diff --git a/Makefile.PL b/Makefile.PL index 07341ca..1cd1b0d 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -2,7 +2,7 @@ # Copyright PROCURA B.V. (c) 2008-2008 H.Merijn Brand -require 5.005; # <- also see postamble at the bottom for META.yml +require 5.006; # <- also see postamble at the bottom for META.yml use strict; use ExtUtils::MakeMaker; diff --git a/README b/README index b203b7b..62fdc85 100644 --- a/README +++ b/README @@ -26,7 +26,7 @@ Copying: it under the same terms as Perl itself. Prerequisites: - Any perl that has sv_dump () exported. + Perl 5.6.0 and up. Build/Installation: Standard build/installation: @@ -34,7 +34,6 @@ Build/Installation: make make test make install - (The 'make' step cannot be omitted for perl-5.005) Author: H.Merijn Brand diff --git a/sandbox/genMETA.pl b/sandbox/genMETA.pl index f66cd46..ac189fe 100755 --- a/sandbox/genMETA.pl +++ b/sandbox/genMETA.pl @@ -67,10 +67,10 @@ provides: file: DDumper.pm version: VERSION requires: - perl: 5.005 + perl: 5.006 DynaLoader: 0 build_requires: - perl: 5.005 + perl: 5.006 Data::Dumper: 0 Test::Harness: 0 Test::More: 0 -- 2.11.4.GIT