set minimum required version of perl to 5.6 (let's see what the smokers think)
Karen Etheridge [Fri, 11 Jul 2014 15:10:38 +0000 (08:10 -0700)]
Changes
Makefile.PL
lib/Web/Simple.pm
lib/Web/Simple/Role.pm

diff --git a/Changes b/Changes
index 8ecc5a3..051e77f 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,6 +1,7 @@
 Revision history for Web-Simple
 
   - remove use of 'use base'
+  - lower minimum required version of perl properly down to 5.6
 
 0.027 - 2014-07-11
   - stable release of 0.026_001
index 89496f2..dfad4a1 100644 (file)
@@ -1,6 +1,6 @@
 use strict;
 use warnings FATAL => 'all';
-use 5.008001;
+use 5.006;
 use ExtUtils::MakeMaker;
 
 (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
index 23d0440..697bb62 100644 (file)
@@ -1,7 +1,6 @@
 package Web::Simple;
 
 use strictures 1;
-use 5.008;
 use warnings::illegalproto ();
 use Moo ();
 use Web::Dispatch::Wrapper ();
index 4f5bc98..f509c28 100644 (file)
@@ -1,6 +1,5 @@
 package Web::Simple::Role;
 use strictures 1;
-use 5.008;
 use warnings::illegalproto ();
 use Moo::Role ();