From 231a5162dd5a077ea08ec2a808d40ecb8b3dce93 Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Thu, 13 Apr 2017 14:34:55 +0300 Subject: [PATCH] Minimum Perl version is 5.10.1 --- Makefile.PL | 2 +- lib/evil.pm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index de6774f..9f10c67 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -6,7 +6,7 @@ WriteMakefile( VERSION_FROM => 'lib/evil.pm', ABSTRACT => 'RFC 3514 (evil bit) implementation for Perl modules', AUTHOR => 'Marius Gavrilescu ', - MIN_PERL_VERSION => '5.8.9', + MIN_PERL_VERSION => '5.10.1', LICENSE => 'perl', SIGN => 1, PREREQ_PM => {}, diff --git a/lib/evil.pm b/lib/evil.pm index 9aa718b..449b6c1 100644 --- a/lib/evil.pm +++ b/lib/evil.pm @@ -1,7 +1,7 @@ #!/usr/bin/perl package evil; -use 5.008009; +use 5.010001; use strict; use warnings; -- 2.30.2