Added dependency on Perl >= 5.10
This make hopefully passing the CPAN tests.
--- 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) = @_;