summaryrefslogtreecommitdiff
path: root/lib/Type/Params
diff options
context:
space:
mode:
authorToby Inkster <mail@tobyinkster.co.uk>2022-09-04 09:10:04 +0100
committerToby Inkster <mail@tobyinkster.co.uk>2022-09-04 09:10:04 +0100
commit5317531b2d4ccff2033cc43d0f05e23259c37682 (patch)
treead7fa49ea6565dc329fa94b4ca143b0078dfd392 /lib/Type/Params
parent7760a734e8e00e4dc246d6b6560e9f24a32f7c3a (diff)
Drop support for Perl 5.6.x and 5.8.0 (fixes #101)
Diffstat (limited to 'lib/Type/Params')
-rw-r--r--lib/Type/Params/Parameter.pm3
-rw-r--r--lib/Type/Params/Signature.pm3
2 files changed, 2 insertions, 4 deletions
diff --git a/lib/Type/Params/Parameter.pm b/lib/Type/Params/Parameter.pm
index 0b4d3090..58b8881d 100644
--- a/lib/Type/Params/Parameter.pm
+++ b/lib/Type/Params/Parameter.pm
@@ -1,11 +1,10 @@
package Type::Params::Parameter;
-use 5.006001;
+use 5.008001;
use strict;
use warnings;
BEGIN {
- if ( $] < 5.008 ) { require Devel::TypeTiny::Perl56Compat }
if ( $] < 5.010 ) { require Devel::TypeTiny::Perl58Compat }
}
diff --git a/lib/Type/Params/Signature.pm b/lib/Type/Params/Signature.pm
index 7709097c..83a6f925 100644
--- a/lib/Type/Params/Signature.pm
+++ b/lib/Type/Params/Signature.pm
@@ -1,11 +1,10 @@
package Type::Params::Signature;
-use 5.006001;
+use 5.008001;
use strict;
use warnings;
BEGIN {
- if ( $] < 5.008 ) { require Devel::TypeTiny::Perl56Compat }
if ( $] < 5.010 ) { require Devel::TypeTiny::Perl58Compat }
}