Added dependency on Perl >= 5.10 default tip
authorHeiko Schlittermann (JUMPER) <hs@schlittermann.de>
Wed, 30 Jul 2014 12:11:42 +0200
changeset 6 b879399517b8
parent 5 13aa73ea622a
Added dependency on Perl >= 5.10 This make hopefully passing the CPAN tests.
Build.PL
lib/Scalar/LockRefType.pm
--- a/Build.PL	Tue Jul 29 21:42:44 2014 +0200
+++ b/Build.PL	Wed Jul 30 12:11:42 2014 +0200
@@ -6,9 +6,9 @@
     dist_abstract => 'simple scalar ref type checker',
     version_from => 'lib/Scalar/LockRefType.pm',
     build_requires => {
-	Test::Exception => 0,
+	Test::Exception => '0.32',
     },
     requires => {
-	perl => '5.0',
+	perl => '5.010',
     }
 )->create_build_script;
--- a/lib/Scalar/LockRefType.pm	Tue Jul 29 21:42:44 2014 +0200
+++ b/lib/Scalar/LockRefType.pm	Wed Jul 30 12:11:42 2014 +0200
@@ -1,9 +1,11 @@
 package Scalar::LockRefType;
+
+use 5.010;
 use strict;
 use warnings;
 use Carp;
 
-our $VERSION = '0.02';
+our $VERSION = '0.03';
 
 sub TIESCALAR {
     my ($class, $type) = @_;